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:44Yurkov AlekseyYurkov AlekseyScore: 10,350Success
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:4510,326138,690,387112,583,0001,005,0002,277,376
2May 2, 2021 18:4410,332138,220,320112,649,0001,005,0002,277,376
3May 2, 2021 18:4510,335142,602,033113,684,00002,531,328
4May 2, 2021 18:4410,346144,600,327111,807,0001,996,0002,527,232
5May 2, 2021 18:4510,347140,335,387112,822,000998,0002,273,280
6May 2, 2021 18:4510,348143,994,416111,831,0001,996,0002,277,376
7May 2, 2021 18:4510,348143,310,299111,832,0001,997,0002,277,376
8May 2, 2021 18:4410,348141,089,889112,833,000998,0002,277,376
9May 2, 2021 18:4510,350140,430,246111,848,0001,997,0002,281,472
10May 2, 2021 18:4410,350139,877,910110,857,0002,996,0002,269,184
11May 2, 2021 18:4410,350139,389,603110,857,0002,996,0002,277,376
12May 2, 2021 18:4410,352140,170,646111,871,0001,997,0002,277,376
13May 2, 2021 18:4410,354137,536,436111,896,0001,998,0002,273,280
14May 2, 2021 18:4510,357135,682,469111,928,0001,998,0002,277,376
15May 2, 2021 18:4410,357143,102,223111,932,0001,998,0002,523,136
16May 2, 2021 18:4410,360139,351,830111,964,0001,999,0002,277,376
17May 2, 2021 18:4510,363136,729,132111,996,0001,999,0002,277,376
18May 2, 2021 18:4510,418139,794,152113,588,0001,005,0002,527,232