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 listApr 30, 2026 12:41Charles CabergsCharles CabergsError
Source Code

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

Challenge History
DateChallengerCostTypeStatus
Sep 8, 2026 08:51C#_user10.00CustomSolution Broken
Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Sep 8, 2026 08:52012,001,4641,312,000020,480No answer to stdout. Died or killed?
2Apr 30, 2026 12:417,37696,431,08478,140,0003,005,0002,527,232stderr
3Apr 30, 2026 12:417,376100,890,69079,136,0002,003,0002,326,528stderr
4Apr 30, 2026 12:417,37996,873,74279,165,0002,004,0002,519,040stderr
5Apr 30, 2026 12:417,38195,680,40679,189,0002,004,0002,519,040stderr
6Apr 30, 2026 12:417,388103,969,91280,269,0001,003,0002,519,040stderr
7Apr 30, 2026 12:417,38998,358,01579,274,0002,006,0002,510,848stderr
8Apr 30, 2026 12:417,391102,308,88379,295,0002,007,0002,519,040stderr
9Apr 30, 2026 12:417,399102,360,55479,387,0002,009,0002,519,040stderr
10Apr 30, 2026 12:417,40296,781,66779,420,0002,010,0002,514,944stderr