Parse JSON Sergey Svistunov

Compute the total amount of non-canceled external USD transactions from a stream of JSON records as fast as possible.

Input: 1 000 000 JSON records on STDIN, one per line. Each record has the following structure:

{
    "user_id": 0,
    "currency": "USD",
    "transactions": [
        {
            "amount": 0,
            "to_user_id": 0,
            "canceled": false
        }
    ]
}
Field Constraints
user_id Integer, max 10 000
currency One of "GBP", "USD", "RUB", "JPY", "CHF"
transactions Array, max 10 elements
amount Integer, max 1000
canceled Boolean; may be omitted when false

Field order is not guaranteed within any object.

Output: The total amount of all transactions where:

  • record.currency == "USD"
  • transaction.to_user_id != record.user_id (external)
  • transaction.canceled is false or absent
Back to listAug 16, 2026 10:40marko1597marko1597Score: 3,515Success
Source Code

Source code access is restricted. Log in to request access.

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Aug 16, 2026 10:473,49446,953,31537,396,0001,043,0002,117,632
2Aug 16, 2026 10:473,49647,053,84137,419,0001,047,0002,117,632
3Aug 16, 2026 10:473,50246,926,45737,489,0001,037,0002,117,632
4Aug 16, 2026 10:473,51347,756,41237,607,0001,039,0002,117,632
5Aug 16, 2026 10:473,51547,098,99437,613,0001,062,0002,117,632
6Aug 16, 2026 10:473,51647,128,71337,651,0001,035,0002,117,632
7Aug 16, 2026 10:473,51747,646,62837,625,0001,063,0002,117,632
8Aug 16, 2026 10:473,52147,236,35637,496,0001,243,0002,117,632
9Aug 16, 2026 10:473,52347,248,99637,702,0001,056,0002,117,632