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 listMay 2, 2021 15:09Yurkov AlekseyYurkov AlekseyError
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1May 2, 2021 15:0900000Died or killed
2May 2, 2021 15:1110,053141,126,977109,581,0001,005,0002,531,328
3May 2, 2021 15:1010,075135,167,738108,829,0001,996,0002,527,232
4May 2, 2021 15:1010,077139,783,875109,848,000998,0002,277,376
5May 2, 2021 15:1110,080134,740,488109,882,000998,0002,273,280
6May 2, 2021 15:1110,082136,099,551108,902,0001,998,0002,277,376
7May 2, 2021 15:1010,084138,232,649107,924,0002,997,0002,277,376
8May 2, 2021 15:1010,084138,635,075108,931,0001,998,0002,269,184
9May 2, 2021 15:1010,087132,734,143108,956,0001,999,0002,387,968
10May 2, 2021 15:0910,090133,076,888108,986,0001,999,0002,273,280
11May 2, 2021 15:0910,093132,852,624108,024,0003,000,0002,523,136
12May 2, 2021 15:1010,094134,689,292109,029,0002,000,0002,273,280
13May 2, 2021 15:1010,099133,047,727109,083,0002,001,0002,277,376
14May 2, 2021 15:0910,100139,134,855109,099,0002,001,0002,277,376
15May 2, 2021 15:1110,100134,955,555110,096,0001,000,0002,277,376
16May 2, 2021 15:1110,100134,309,825110,095,0001,000,0002,269,184
17May 2, 2021 15:1110,101134,876,906109,106,0002,001,0002,277,376
18May 2, 2021 15:1110,105137,313,429109,149,0002,002,0002,277,376
19May 2, 2021 15:0910,106134,734,540109,167,0002,003,0002,269,184
20May 2, 2021 15:0910,110139,324,087109,208,0002,003,0002,269,184
21May 2, 2021 15:1010,115134,735,172109,266,0002,004,0002,277,376
22May 2, 2021 15:0910,115136,767,739109,262,0002,004,0002,269,184
23May 2, 2021 15:1010,117137,403,945109,286,0002,005,0002,269,184
24May 2, 2021 15:0910,117136,756,424110,289,0001,002,0002,277,376
25May 2, 2021 15:1110,120132,417,446109,320,0002,005,0002,387,968
26May 2, 2021 15:1110,125135,268,007109,367,0002,006,0002,281,472
27May 2, 2021 15:0910,132133,529,335110,451,0001,004,0002,273,280
28May 2, 2021 15:0910,142132,661,886110,559,0001,005,0002,277,376