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 07:27olliecrowolliecrowScore: 3,147Success
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 07:273,13654,609,17934,498,00002,277,376
2Mar 27, 2026 07:273,13755,448,90233,488,0001,014,0002,396,160
3Mar 27, 2026 07:273,13862,127,95933,503,0001,015,0002,277,376
4Mar 27, 2026 07:273,14159,063,75133,538,0001,016,0002,277,376
5Mar 27, 2026 07:273,14156,195,53334,548,00002,510,848
6Mar 27, 2026 07:273,14259,696,01834,559,00002,404,352
7Mar 27, 2026 07:273,14361,062,73334,575,00002,277,376
8Mar 27, 2026 07:273,14460,488,66334,588,00002,277,376
9Mar 27, 2026 07:273,14464,427,28133,570,0001,017,0002,392,064
10Mar 27, 2026 07:273,14563,116,49034,598,00002,277,376
11Mar 27, 2026 07:273,14561,400,21433,577,0001,017,0002,277,376
12Mar 27, 2026 07:273,14660,977,55133,590,0001,017,0002,277,376
13Mar 27, 2026 07:273,14759,212,97233,600,0001,018,0002,404,352
14Mar 27, 2026 07:273,14859,480,04633,606,0001,018,0002,408,448
15Mar 27, 2026 07:273,14960,605,60434,639,00002,277,376
16Mar 27, 2026 07:273,15263,553,98034,667,00002,396,160
17Mar 27, 2026 07:273,16460,713,69633,808,000994,0002,277,376
18Mar 27, 2026 07:273,16760,845,89533,844,000995,0002,277,376
19Mar 27, 2026 07:273,16867,573,71532,858,0001,991,0002,277,376
20Mar 27, 2026 07:273,16962,693,04032,864,0001,991,0002,277,376
21Mar 27, 2026 07:273,17257,114,61133,892,000996,0002,277,376
22Mar 27, 2026 07:273,17365,685,93832,914,0001,994,0002,277,376
23Mar 27, 2026 07:273,17565,557,93232,931,0001,995,0002,277,376
24Mar 27, 2026 07:273,18163,910,18833,991,000999,0002,404,352