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 9, 2021 18:43Sergey StreminSergey StreminScore: 11,236Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1May 9, 2021 18:4311,192145,377,68788,077,00035,030,0002,289,664
2May 9, 2021 18:3711,209152,159,61098,236,00025,060,0002,289,664
3May 9, 2021 18:3711,210144,345,99293,235,00030,075,0002,289,664
4May 9, 2021 18:3711,211145,322,23891,234,00032,082,0002,281,472
5May 9, 2021 18:3711,220146,710,75692,312,00031,105,0002,363,392
6May 9, 2021 18:4311,221149,911,78290,312,00033,114,0002,289,664
7May 9, 2021 18:4311,222143,587,43694,340,00029,104,0002,371,584
8May 9, 2021 18:3711,222150,159,46295,343,00028,101,0002,482,176
9May 9, 2021 18:4311,231150,365,00898,428,00025,109,0002,465,792
10May 9, 2021 18:3711,236151,399,02293,451,00030,145,0002,367,488
11May 9, 2021 18:4311,239153,738,22292,468,00031,157,0002,289,664
12May 9, 2021 18:3711,244151,842,39496,750,00026,930,0002,371,584
13May 9, 2021 18:4311,257154,750,82190,876,00032,955,0002,367,488
14May 9, 2021 18:4311,257154,760,05893,867,00029,957,0002,375,680
15May 9, 2021 18:4311,293144,953,71589,164,00035,064,0002,367,488
16May 9, 2021 18:4311,324150,640,96292,420,00032,146,0002,289,664
17May 9, 2021 18:3711,858152,111,19898,327,00032,107,0002,371,584
18May 9, 2021 18:3711,870160,218,17293,409,00037,162,0002,363,392