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 05:32olliecrowolliecrowScore: 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 05:323,13460,530,36434,479,00002,408,448
2Mar 27, 2026 05:323,13756,792,61233,491,0001,014,0002,277,376
3Mar 27, 2026 05:323,13757,818,22133,494,0001,014,0002,392,064
4Mar 27, 2026 05:323,14055,907,08934,538,00002,277,376
5Mar 27, 2026 05:323,14057,966,26833,522,0001,015,0002,404,352
6Mar 27, 2026 05:323,14264,123,14334,563,00002,383,872
7Mar 27, 2026 05:323,14267,424,99034,564,00002,396,160
8Mar 27, 2026 05:323,14460,639,55834,582,00002,400,256
9Mar 27, 2026 05:323,14557,181,22134,593,00002,510,848
10Mar 27, 2026 05:323,14562,302,17733,576,0001,017,0002,277,376
11Mar 27, 2026 05:323,14562,881,28934,599,00002,277,376
12Mar 27, 2026 05:323,14660,791,81933,589,0001,017,0002,408,448
13Mar 27, 2026 05:323,14763,359,79333,601,0001,018,0002,408,448
14Mar 27, 2026 05:323,14862,565,12233,609,0001,018,0002,400,256
15Mar 27, 2026 05:323,15061,147,24934,648,00002,510,848
16Mar 27, 2026 05:323,15267,183,12533,650,0001,019,0002,396,160
17Mar 27, 2026 05:323,15258,905,38233,649,0001,019,0002,396,160
18Mar 27, 2026 05:323,15367,855,70733,665,0001,020,0002,277,376
19Mar 27, 2026 05:323,15463,079,67833,679,0001,020,0002,482,176
20Mar 27, 2026 05:323,15462,830,02534,692,00002,277,376
21Mar 27, 2026 05:323,15760,805,15033,706,0001,021,0002,277,376
22Mar 27, 2026 05:323,16865,474,81033,848,000995,0002,396,160
23Mar 27, 2026 05:323,16964,923,36634,858,00002,277,376
24Mar 27, 2026 05:323,17064,249,45933,875,000996,0002,392,064
25Mar 27, 2026 05:323,17257,189,54132,898,0001,993,0002,277,376
26Mar 27, 2026 05:323,17456,254,80333,922,000997,0002,277,376
27Mar 27, 2026 05:323,194101,233,16634,133,0001,003,0002,273,280