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 04:28olliecrowolliecrowScore: 3,148Success
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 04:283,12854,883,91033,399,0001,012,0002,404,352
2Mar 27, 2026 04:283,13957,381,16734,532,00002,277,376
3Mar 27, 2026 04:283,14059,098,06634,539,00002,277,376
4Mar 27, 2026 04:283,14059,490,80033,525,0001,015,0002,396,160
5Mar 27, 2026 04:283,14159,376,43833,530,0001,016,0002,392,064
6Mar 27, 2026 04:283,14159,122,66633,540,0001,016,0002,277,376
7Mar 27, 2026 04:283,14257,221,76234,558,00002,404,352
8Mar 27, 2026 04:283,14463,182,90833,572,0001,017,0002,392,064
9Mar 27, 2026 04:283,14460,303,56434,589,00002,277,376
10Mar 27, 2026 04:283,14560,622,79333,579,0001,017,0002,277,376
11Mar 27, 2026 04:283,14762,587,46234,621,00002,277,376
12Mar 27, 2026 04:283,14770,554,31333,604,0001,018,0002,396,160
13Mar 27, 2026 04:283,14864,522,10734,627,00002,408,448
14Mar 27, 2026 04:283,14964,789,40034,643,00002,277,376
15Mar 27, 2026 04:283,15059,693,16433,633,0001,019,0002,281,472
16Mar 27, 2026 04:283,15160,345,51533,640,0001,019,0002,277,376
17Mar 27, 2026 04:283,15365,022,60933,668,0001,020,0002,277,376
18Mar 27, 2026 04:283,16863,687,02233,851,000995,0002,277,376
19Mar 27, 2026 04:283,16963,097,32233,863,000995,0002,277,376
20Mar 27, 2026 04:283,17060,899,37332,881,0001,992,0002,277,376
21Mar 27, 2026 04:283,17066,048,25133,873,000996,0002,400,256
22Mar 27, 2026 04:283,17162,144,19232,888,0001,993,0002,396,160
23Mar 27, 2026 04:283,17456,474,57033,918,000997,0002,494,464
24Mar 27, 2026 04:283,17662,172,06332,940,0001,996,0002,408,448