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 18:53Yurkov AlekseyYurkov AlekseyScore: 6,786Success
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 18:536,77195,874,07073,471,0001,006,0002,289,664
2May 2, 2021 18:536,77899,252,07873,554,0001,007,0002,277,376
3May 2, 2021 18:526,77998,760,23573,561,0001,007,0002,277,376
4May 2, 2021 18:536,77995,807,36873,560,0001,007,0002,277,376
5May 2, 2021 18:526,780100,229,24772,565,0002,015,0002,277,376
6May 2, 2021 18:536,782102,263,12874,598,00002,273,280
7May 2, 2021 18:526,783101,875,92272,623,0001,989,0002,277,376
8May 2, 2021 18:526,78499,913,82973,616,0001,008,0002,277,376
9May 2, 2021 18:526,785101,598,55673,627,0001,008,0002,273,280
10May 2, 2021 18:526,786100,884,38972,631,0002,017,0002,523,136
11May 2, 2021 18:536,790101,270,61273,686,0001,009,0002,277,376
12May 2, 2021 18:536,79198,719,63572,680,0002,018,0002,277,376
13May 2, 2021 18:526,801106,487,21173,819,000997,0002,277,376
14May 2, 2021 18:526,804101,293,62272,853,0001,995,0002,277,376
15May 2, 2021 18:536,805102,869,94372,861,0001,996,0002,277,376
16May 2, 2021 18:536,80799,724,20873,874,000998,0002,277,376
17May 2, 2021 18:526,80799,891,37872,886,0001,996,0002,277,376
18May 2, 2021 18:536,810101,013,22573,917,000998,0002,277,376