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 listMar 27, 2026 03:03olliecrowolliecrowScore: 3,150Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Mar 27, 2026 03:033,13654,361,86733,482,0001,014,0002,277,376
2Mar 27, 2026 03:033,14158,924,20934,548,00002,400,256
3Mar 27, 2026 03:033,14161,146,82433,536,0001,016,0002,277,376
4Mar 27, 2026 03:033,14262,606,75433,549,0001,016,0002,392,064
5Mar 27, 2026 03:033,14460,525,25334,587,00002,277,376
6Mar 27, 2026 03:033,14561,478,69634,598,00002,392,064
7Mar 27, 2026 03:033,14559,963,43633,574,0001,017,0002,404,352
8Mar 27, 2026 03:033,14667,185,47534,609,00002,277,376
9Mar 27, 2026 03:033,14662,895,23234,609,00002,277,376
10Mar 27, 2026 03:033,14863,452,28634,627,00002,277,376
11Mar 27, 2026 03:033,14957,487,26533,625,0001,018,0002,392,064
12Mar 27, 2026 03:033,14967,062,77333,621,0001,018,0002,277,376
13Mar 27, 2026 03:033,15062,300,75633,635,0001,019,0002,277,376
14Mar 27, 2026 03:033,15162,191,79334,664,00002,277,376
15Mar 27, 2026 03:033,15161,164,66633,643,0001,019,0002,400,256
16Mar 27, 2026 03:033,15160,654,87133,645,0001,019,0002,277,376
17Mar 27, 2026 03:033,15261,922,73334,675,00002,277,376
18Mar 27, 2026 03:033,15366,124,27033,664,0001,020,0002,277,376
19Mar 27, 2026 03:033,16863,466,68232,859,0001,991,0002,392,064
20Mar 27, 2026 03:033,16965,497,53732,871,0001,992,0002,396,160
21Mar 27, 2026 03:033,17062,484,40334,866,00002,277,376
22Mar 27, 2026 03:033,17557,469,73632,930,0001,995,0002,387,968
23Mar 27, 2026 03:033,17862,674,10432,962,0001,997,0002,277,376
24Mar 27, 2026 03:033,17956,734,22833,968,000999,0002,400,256