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:56Yurkov AlekseyYurkov AlekseyScore: 6,806Success
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:566,777102,798,38173,545,0001,007,0002,277,376
2May 2, 2021 18:566,784106,864,44273,613,0001,008,0002,277,376
3May 2, 2021 18:566,787102,124,33273,650,0001,008,0002,265,088
4May 2, 2021 18:566,789106,887,58074,677,00002,531,328
5May 2, 2021 18:576,790103,019,29873,683,0001,009,0002,277,376
6May 2, 2021 18:576,790101,973,57073,679,0001,009,0002,277,376
7May 2, 2021 18:576,793102,883,38373,713,0001,009,0002,277,376
8May 2, 2021 18:576,793102,623,85974,718,00002,523,136
9May 2, 2021 18:576,803103,571,75672,833,0001,995,0002,277,376
10May 2, 2021 18:576,806100,458,85672,867,0001,996,0002,347,008
11May 2, 2021 18:566,806104,201,56872,867,0001,996,0002,277,376
12May 2, 2021 18:576,807106,256,49772,878,0001,996,0002,519,040
13May 2, 2021 18:576,808102,095,78272,894,0001,997,0002,277,376
14May 2, 2021 18:566,811100,494,83872,919,0001,997,0002,269,184
15May 2, 2021 18:566,81197,838,38470,930,0003,996,0002,273,280
16May 2, 2021 18:576,81296,802,40172,939,0001,998,0002,277,376
17May 2, 2021 18:566,812103,818,02072,939,0001,998,0002,277,376
18May 2, 2021 18:566,81697,572,56471,973,0002,998,0002,355,200