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 listSep 5, 2021 12:37Andrey TsvetkovAndrey TsvetkovError
Source Code

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

Challenge History
DateChallengerCostTypeStatus
Sep 8, 2026 07:15C#_user10.00CustomSolution Broken
Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Sep 8, 2026 07:15029,650,94619,623,0001,142,0002,138,112expected "2 ", got "1 "
2Sep 8, 2026 07:15029,321,34419,730,0001,156,0002,138,112expected "2 ", got "1 "
3Sep 8, 2026 07:15029,241,96119,617,0001,147,0002,138,112expected "2 ", got "1 "
4Sep 5, 2021 12:378,983124,774,91595,823,0002,994,0002,334,720
5Sep 5, 2021 12:378,994125,353,52995,938,0002,998,0002,334,720
6Sep 5, 2021 12:378,997128,837,52496,968,0001,999,0002,519,040
7Sep 5, 2021 12:379,003127,808,13897,035,0002,000,0002,334,720
8Sep 5, 2021 12:379,004125,834,33196,045,0003,001,0002,514,944
9Sep 5, 2021 12:379,010127,199,75697,111,0002,002,0002,330,624
10Sep 5, 2021 12:379,014124,387,28896,151,0003,004,0002,338,816
11Sep 5, 2021 12:379,020121,182,20796,212,0003,006,0002,334,720
12Sep 5, 2021 12:379,021120,881,04496,228,0003,007,0002,514,944
13Sep 5, 2021 12:379,045163,553,44599,493,89502,199,552
14Sep 5, 2021 12:379,047163,359,01799,520,81602,183,168
15Sep 5, 2021 12:379,526174,415,625104,790,28002,191,360