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 11, 2021 14:45Sergey StreminSergey StreminScore: 8,268Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1May 11, 2021 14:458,235117,192,32066,432,00024,157,0002,379,776
2May 11, 2021 14:468,243118,031,40565,486,00025,186,0002,289,664
3May 11, 2021 14:468,243114,858,67660,452,00030,226,0002,289,664
4May 11, 2021 14:468,245119,167,33963,488,00027,209,0002,289,664
5May 11, 2021 14:468,254117,401,01255,876,00034,922,0002,371,584
6May 11, 2021 14:468,257115,862,12664,879,00025,951,0002,371,584
7May 11, 2021 14:458,258118,960,92562,580,00028,261,0002,383,872
8May 11, 2021 14:468,259119,630,28960,901,00029,951,0002,289,664
9May 11, 2021 14:468,261117,867,31559,918,00030,957,0002,289,664
10May 11, 2021 14:458,261117,006,51760,916,00029,958,0002,289,664
11May 11, 2021 14:468,262115,451,15362,922,00027,965,0002,375,680
12May 11, 2021 14:468,263123,055,63758,932,00031,963,0002,379,776
13May 11, 2021 14:468,265115,438,09959,944,00030,971,0002,375,680
14May 11, 2021 14:458,268121,212,66959,967,00030,983,0002,289,664
15May 11, 2021 14:458,271115,419,37862,990,00027,995,0002,383,872
16May 11, 2021 14:468,273120,225,66556,005,00035,003,0002,289,664
17May 11, 2021 14:458,273118,671,58458,005,00033,003,0002,289,664
18May 11, 2021 14:468,278111,684,87061,040,00030,019,0002,289,664
19May 11, 2021 14:468,281114,674,14959,058,00032,031,0002,375,680
20May 11, 2021 14:468,288117,849,44557,106,00034,063,0002,289,664
21May 11, 2021 14:458,295113,057,95560,164,00031,084,0002,375,680
22May 11, 2021 14:458,296116,645,24061,172,00030,085,0002,281,472
23May 11, 2021 14:468,304114,146,58359,225,00032,122,0002,379,776
24May 11, 2021 14:458,308114,469,81159,251,00032,136,0002,289,664
25May 11, 2021 14:468,309116,229,76359,262,00032,142,0002,379,776
26May 11, 2021 14:468,326119,696,12858,375,00033,213,0002,375,680
27May 11, 2021 14:468,354120,253,08856,936,00034,960,0002,289,664