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 12, 2021 22:56Yuriy LyfenkoYuriy LyfenkoScore: 8,282Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1May 19, 2021 20:268,258129,953,36290,841,85202,199,552
2May 12, 2021 22:508,260119,446,74588,860,0001,996,0002,334,720
3May 19, 2021 20:268,265157,292,96890,914,74902,244,608
4May 12, 2021 22:508,269118,979,93389,956,000999,0002,334,720
5May 12, 2021 22:578,269118,377,54289,960,000999,0002,523,136
6May 19, 2021 20:268,270119,073,00689,975,000999,0002,330,624
7May 12, 2021 22:578,270113,982,19389,972,000999,0002,535,424
8May 12, 2021 22:578,270114,162,66888,967,0001,999,0002,400,256
9May 12, 2021 22:508,271115,498,67488,982,0001,999,0002,330,624
10May 12, 2021 22:578,271123,260,42688,983,0001,999,0002,531,328
11May 12, 2021 22:578,271121,014,85388,979,0001,999,0002,330,624
12May 19, 2021 20:268,275129,297,37591,022,55202,187,264
13May 12, 2021 22:568,275120,162,52189,025,0002,000,0002,330,624
14May 12, 2021 22:578,275119,282,03590,024,0001,000,0002,531,328
15May 12, 2021 22:578,276118,697,21788,039,0003,001,0002,330,624
16May 19, 2021 20:268,276121,632,94290,039,0001,000,0002,531,328
17May 12, 2021 22:578,276119,491,50990,036,0001,000,0002,330,624
18May 12, 2021 22:578,277112,468,80089,046,0002,001,0002,523,136
19May 12, 2021 22:578,277118,084,85489,043,0002,000,0002,330,624
20May 19, 2021 20:268,278117,929,00689,057,0002,001,0002,523,136
21May 19, 2021 20:268,278115,464,14487,061,0004,002,0002,330,624
22May 12, 2021 22:578,279123,481,54890,069,0001,000,0002,334,720
23May 12, 2021 22:508,279115,137,75589,070,0002,001,0002,371,584
24May 12, 2021 22:508,279120,363,83789,070,0002,001,0002,527,232
25May 12, 2021 22:568,280118,056,94389,075,0002,001,0002,342,912
26May 12, 2021 22:578,280120,976,22690,084,0001,000,0002,527,232
27May 12, 2021 22:578,280118,903,68590,075,0001,000,0002,531,328
28May 12, 2021 22:568,281114,552,82788,089,0003,003,0002,355,200
29May 12, 2021 22:578,282117,744,82390,106,0001,001,0002,330,624
30May 19, 2021 20:268,283119,143,21787,105,0004,004,0002,330,624
31May 12, 2021 22:578,284113,839,30289,125,0002,002,0002,523,136
32May 12, 2021 22:578,284112,990,53387,124,0004,005,0002,330,624
33May 12, 2021 22:508,284117,967,16288,082,0003,037,0002,330,624
34May 12, 2021 22:508,285121,307,95790,130,0001,001,0002,330,624
35May 12, 2021 22:578,286116,925,67389,140,0002,003,0002,396,160
36May 12, 2021 22:508,287110,396,00490,154,0001,001,0002,392,064
37May 12, 2021 22:578,287113,919,42988,155,0003,005,0002,330,624
38May 19, 2021 20:268,288117,912,82187,162,0004,007,0002,523,136
39May 12, 2021 22:578,288113,789,32390,171,0001,001,0002,523,136
40May 12, 2021 22:578,288114,970,80989,169,0002,003,0002,519,040
41May 12, 2021 22:578,288113,985,91488,162,0003,005,0002,519,040
42May 12, 2021 22:578,289121,914,68789,177,0002,003,0002,531,328
43May 12, 2021 22:568,289114,006,31489,177,0002,003,0002,330,624
44May 12, 2021 22:578,290114,061,35490,184,0001,002,0002,330,624
45May 12, 2021 22:568,290113,016,38889,189,0002,004,0002,330,624
46May 12, 2021 22:508,291116,678,56289,197,0002,004,0002,527,232
47May 12, 2021 22:578,291116,503,16290,198,0001,002,0002,531,328
48May 19, 2021 20:268,291113,392,02189,200,0002,004,0002,330,624
49May 19, 2021 20:268,293111,263,39188,218,0003,007,0002,330,624
50May 12, 2021 22:568,298114,851,88987,268,0004,012,0002,519,040
51May 12, 2021 22:578,298119,416,64987,264,0004,012,0002,322,432
52May 12, 2021 22:568,301113,573,38888,302,0003,010,0002,330,624
53May 12, 2021 22:568,304111,936,69288,328,0003,011,0002,531,328
54May 12, 2021 22:578,304111,831,50088,335,0003,011,0002,527,232
55May 19, 2021 20:268,306114,850,38090,364,0001,004,0002,531,328
56May 12, 2021 22:578,315117,967,62489,452,0002,010,0002,330,624
57May 12, 2021 22:568,322115,583,25790,534,0001,005,0002,334,720