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:56olliecrowolliecrowScore: 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 07:563,13755,890,17133,490,0001,014,0002,400,256
2Mar 27, 2026 07:563,13861,548,81333,501,0001,015,0002,277,376
3Mar 27, 2026 07:563,14057,379,21533,522,0001,015,0002,277,376
4Mar 27, 2026 07:563,14264,026,53333,548,0001,016,0002,277,376
5Mar 27, 2026 07:563,14259,553,09834,563,00002,277,376
6Mar 27, 2026 07:563,14362,665,64134,578,00002,396,160
7Mar 27, 2026 07:563,14356,547,02834,573,00002,277,376
8Mar 27, 2026 07:563,14960,373,77133,619,0001,018,0002,277,376
9Mar 27, 2026 07:563,14962,172,06034,638,00002,277,376
10Mar 27, 2026 07:563,15060,400,93534,652,00002,277,376
11Mar 27, 2026 07:563,15061,918,85233,635,0001,019,0002,400,256
12Mar 27, 2026 07:563,15366,298,56233,661,0001,020,0002,478,080
13Mar 27, 2026 07:563,16763,682,58734,835,00002,277,376
14Mar 27, 2026 07:563,16863,143,06633,856,000995,0002,277,376
15Mar 27, 2026 07:563,16864,072,91333,854,000995,0002,277,376
16Mar 27, 2026 07:563,16865,142,74033,848,000995,0002,277,376
17Mar 27, 2026 07:563,17067,045,66833,870,000996,0002,277,376
18Mar 27, 2026 07:563,17162,050,45234,885,00002,277,376
19Mar 27, 2026 07:563,17162,166,44932,886,0001,993,0002,277,376
20Mar 27, 2026 07:563,17157,576,52533,885,000996,0002,277,376
21Mar 27, 2026 07:563,17759,964,08532,955,0001,997,0002,396,160