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 21, 2026 04:08Dominique GarmierDominique GarmierScore: 30,179Success
Source Code

Source code access is restricted. Log in to request access.

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Mar 14, 2026 11:0830,128356,036,409330,405,0001,001,0002,289,664
2Mar 14, 2026 11:0830,152360,600,608330,674,000999,0002,289,664
3Mar 15, 2026 11:0530,164359,311,107329,811,0001,998,0002,281,472
4Mar 20, 2026 02:3730,166363,626,819330,823,000999,0002,277,376
5Mar 21, 2026 01:1830,166360,510,002329,833,0001,998,0002,273,280
6Mar 20, 2026 02:3730,169356,186,403329,857,0001,999,0002,289,664
7Mar 15, 2026 11:0530,172359,077,606330,895,000999,0002,269,184
8Mar 21, 2026 01:1830,179356,633,810329,971,0001,999,0002,289,664
9Mar 15, 2026 11:0530,180359,684,597330,976,000999,0002,289,664
10Mar 21, 2026 01:1830,194359,189,398330,135,0002,000,0002,289,664
11Mar 21, 2026 04:0830,195353,836,977330,147,0002,000,0002,289,664
12Mar 21, 2026 04:0830,222354,409,808331,443,0001,001,0002,289,664
13Mar 14, 2026 11:0830,224359,628,591331,458,0001,001,0002,265,088
14Mar 21, 2026 04:0830,232368,789,079331,547,0001,001,0002,289,664
15Mar 20, 2026 02:3730,246360,012,975330,703,0001,998,0002,277,376