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 listSep 27, 2025 07:44Wookyung JeongWookyung JeongScore: 30,789Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Sep 27, 2025 07:5030,681367,878,363312,460,00025,036,0002,265,088
2Sep 27, 2025 07:5030,704359,701,500311,766,00025,980,0002,359,296
3Sep 27, 2025 07:5030,723369,014,592313,953,00023,996,0002,367,488
4Sep 27, 2025 07:5030,735361,453,181317,084,00021,005,0002,498,560
5Sep 27, 2025 07:5030,756360,750,618317,298,00021,019,0002,367,488
6Sep 27, 2025 07:4430,758366,180,418306,307,00032,032,0002,396,160
7Sep 27, 2025 07:4430,764363,868,286322,389,00016,019,0002,400,256
8Sep 27, 2025 07:4430,785363,172,522311,665,00026,971,0002,412,544
9Sep 27, 2025 07:4430,787370,573,437317,682,00020,979,0002,510,848
10Sep 27, 2025 07:4430,789362,238,254314,700,00023,977,0002,383,872
11Sep 27, 2025 07:4430,791364,867,307311,722,00026,976,0002,437,120
12Sep 27, 2025 07:4430,801364,821,969320,820,00017,989,0002,367,488
13Sep 27, 2025 07:5030,802364,968,222314,834,00023,987,0002,396,160
14Sep 27, 2025 07:5030,804362,545,077309,856,00028,986,0002,359,296
15Sep 27, 2025 07:4430,825363,491,913310,068,00029,006,0002,326,528
16Sep 27, 2025 07:5030,825366,921,739319,071,00020,004,0002,269,184
17Sep 27, 2025 07:4430,827367,181,136313,095,00026,007,0002,277,376
18Sep 27, 2025 07:5030,884363,203,911315,741,00023,980,0002,347,008