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:52olliecrowolliecrowScore: 3,149Success
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:523,13757,237,53634,506,00002,277,376
2Mar 27, 2026 03:523,14058,003,38534,544,00002,277,376
3Mar 27, 2026 03:523,14254,400,19834,558,00002,510,848
4Mar 27, 2026 03:523,14360,800,38633,557,0001,016,0002,277,376
5Mar 27, 2026 03:523,14361,600,74834,570,00002,396,160
6Mar 27, 2026 03:523,14456,770,76334,587,00002,277,376
7Mar 27, 2026 03:523,14561,704,49934,595,00002,383,872
8Mar 27, 2026 03:523,14563,012,17433,581,0001,017,0002,277,376
9Mar 27, 2026 03:523,14767,102,12233,596,0001,018,0002,277,376
10Mar 27, 2026 03:523,14760,331,57834,613,00002,277,376
11Mar 27, 2026 03:523,14962,971,18033,618,0001,018,0002,277,376
12Mar 27, 2026 03:523,14959,795,02433,626,0001,018,0002,277,376
13Mar 27, 2026 03:523,15065,509,75333,634,0001,019,0002,277,376
14Mar 27, 2026 03:523,15162,115,53934,661,00002,277,376
15Mar 27, 2026 03:523,15166,779,42534,657,00002,400,256
16Mar 27, 2026 03:523,15164,951,42333,647,0001,019,0002,404,352
17Mar 27, 2026 03:523,15359,504,91534,681,00002,404,352
18Mar 27, 2026 03:523,15463,580,28634,694,00002,277,376
19Mar 27, 2026 03:523,16560,883,86133,816,000994,0002,277,376
20Mar 27, 2026 03:523,16861,252,90833,854,000995,0002,400,256
21Mar 27, 2026 03:523,17357,167,01232,909,0001,994,0002,392,064