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 08:34Wookyung JeongWookyung JeongScore: 18,025Success
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 08:3417,935220,732,171173,247,00024,034,0002,355,200
2Sep 27, 2025 08:3417,941226,306,009174,315,00023,041,0002,523,136
3Sep 27, 2025 08:3417,951223,360,089175,413,00022,052,0002,424,832
4Sep 27, 2025 08:3417,952229,881,612174,422,00023,055,0002,338,816
5Sep 27, 2025 08:3417,965224,692,000174,663,00022,955,0002,334,720
6Sep 27, 2025 08:3417,972229,481,195174,732,00022,964,0002,326,528
7Sep 27, 2025 08:3417,974228,376,413176,742,00020,969,0002,400,256
8Sep 27, 2025 08:3417,975224,755,932171,758,00025,963,0002,433,024
9Sep 27, 2025 08:3417,990221,432,140176,905,00020,988,0002,404,352
10Sep 27, 2025 08:3417,990220,716,468181,903,00015,991,0002,334,720
11Sep 27, 2025 08:3417,993224,725,783181,930,00015,993,0002,404,352
12Sep 27, 2025 08:3417,995222,583,264170,953,00026,992,0002,412,544
13Sep 27, 2025 08:3417,996226,962,080174,958,00022,994,0002,400,256
14Sep 27, 2025 08:3418,001224,613,550179,007,00019,000,0002,465,792
15Sep 27, 2025 08:3418,009220,296,992173,085,00025,012,0002,494,464
16Sep 27, 2025 08:3418,015221,030,296175,149,00023,019,0002,416,640
17Sep 27, 2025 08:3418,015220,822,591175,149,00023,019,0002,408,448
18Sep 27, 2025 08:3418,017224,221,816179,168,00019,017,0002,351,104
19Sep 27, 2025 08:3418,018221,141,065177,180,00021,021,0002,457,600
20Sep 27, 2025 08:3418,021220,582,168177,202,00021,024,0002,322,432
21Sep 27, 2025 08:3418,022220,458,912175,218,00023,028,0002,342,912
22Sep 27, 2025 08:3418,024220,264,458172,229,00026,034,0002,486,272
23Sep 27, 2025 08:3418,025223,415,556180,248,00018,024,0002,347,008
24Sep 27, 2025 08:3418,026221,493,165181,257,00017,024,0002,322,432
25Sep 27, 2025 08:3418,030219,282,174175,289,00023,038,0002,461,696
26Sep 27, 2025 08:3418,039220,865,165174,382,00024,052,0002,383,872
27Sep 27, 2025 08:3418,042228,855,463176,409,00022,051,0002,404,352
28Sep 27, 2025 08:3418,043225,430,324177,422,00021,050,0002,379,776
29Sep 27, 2025 08:3418,051231,072,904167,473,00031,087,0002,334,720
30Sep 27, 2025 08:3418,052229,034,217174,626,00023,948,0002,396,160
31Sep 27, 2025 08:3418,053224,818,576178,627,00019,958,0002,510,848
32Sep 27, 2025 08:3418,054223,452,610172,513,00026,077,0002,363,392
33Sep 27, 2025 08:3418,055226,526,920174,536,00024,074,0002,334,720
34Sep 27, 2025 08:3418,059226,295,964180,684,00017,968,0002,392,064
35Sep 27, 2025 08:3418,065224,443,970177,746,00020,970,0002,330,624
36Sep 27, 2025 08:3418,067228,874,934176,770,00021,971,0002,461,696
37Sep 27, 2025 08:3418,069225,952,368182,777,00015,980,0002,269,184
38Sep 27, 2025 08:3418,073226,733,738177,717,00021,085,0002,359,296
39Sep 27, 2025 08:3418,074223,055,374177,836,00020,980,0002,351,104
40Sep 27, 2025 08:3418,088221,693,473172,969,00025,995,0002,387,968
41Sep 27, 2025 08:3418,089221,850,553178,985,00019,998,0002,363,392
42Sep 27, 2025 08:3418,094224,829,697184,028,00015,002,0002,326,528
43Sep 27, 2025 08:3418,097227,993,077173,061,00026,009,0002,371,584
44Sep 27, 2025 08:3418,112220,744,593178,206,00021,024,0002,400,256
45Sep 27, 2025 08:3418,125220,580,190176,328,00023,042,0002,404,352