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 7, 2021 18:43Yuriy LyfenkoYuriy LyfenkoScore: 5,622Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1May 7, 2021 18:415,59883,336,24859,558,0002,018,0002,396,160
2May 7, 2021 18:445,59883,619,19360,567,0001,009,0002,396,160
3May 7, 2021 18:445,59990,198,36761,594,00002,387,968
4May 7, 2021 18:425,60186,304,25360,598,0001,009,0002,260,992
5May 7, 2021 18:415,60191,603,43859,589,0002,019,0002,523,136
6May 7, 2021 18:425,60186,351,37760,605,0001,010,0002,387,968
7May 7, 2021 18:415,60486,141,65661,644,00002,396,160
8May 7, 2021 18:445,60487,749,49660,630,0001,010,0002,392,064
9May 7, 2021 18:445,60586,163,03661,660,00002,396,160
10May 7, 2021 18:435,60987,842,55660,685,0001,011,0002,527,232
11May 7, 2021 18:425,60992,489,68961,704,00002,396,160
12May 7, 2021 18:425,61090,402,26461,711,00002,400,256
13May 7, 2021 18:425,61087,831,71360,698,0001,011,0002,392,064
14May 7, 2021 18:445,61096,841,02061,710,00002,379,776
15May 7, 2021 18:435,61886,796,50259,809,0001,993,0002,514,944
16May 7, 2021 18:425,62086,493,99460,827,000997,0002,392,064
17May 7, 2021 18:415,62187,454,29660,835,000997,0002,387,968
18May 7, 2021 18:415,62287,672,53760,845,000997,0002,527,232
19May 7, 2021 18:425,62299,391,14458,847,0002,992,0002,260,992
20May 7, 2021 18:425,62291,673,15160,840,000997,0002,396,160
21May 7, 2021 18:425,62287,699,72559,843,0001,994,0002,387,968
22May 7, 2021 18:435,62286,535,28359,846,0001,994,0002,473,984
23May 7, 2021 18:435,62294,052,77059,845,0001,994,0002,387,968
24May 7, 2021 18:415,62389,656,77060,852,000997,0002,523,136
25May 7, 2021 18:415,62386,087,76460,859,000997,0002,396,160
26May 7, 2021 18:435,62388,442,63859,858,0001,995,0002,510,848
27May 7, 2021 18:445,62491,633,91660,862,000997,0002,392,064
28May 7, 2021 18:435,62492,781,08859,870,0001,995,0002,523,136
29May 7, 2021 18:435,62587,978,99260,878,000998,0002,392,064
30May 7, 2021 18:415,62590,843,07960,880,000998,0002,387,968
31May 7, 2021 18:445,62585,938,82959,881,0001,996,0002,260,992
32May 7, 2021 18:445,62684,725,67359,889,0001,996,0002,523,136
33May 7, 2021 18:435,62989,098,93059,923,0001,997,0002,523,136
34May 7, 2021 18:445,63185,218,63159,941,0001,998,0002,523,136
35May 7, 2021 18:415,63794,918,00860,012,0002,000,0002,519,040
36May 7, 2021 18:435,63993,905,83161,032,0001,000,0002,527,232