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 listOct 15, 2025 01:58Marco BarboneMarco BarboneScore: 19,445Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Oct 15, 2025 01:5819,427238,327,692212,700,000998,0002,539,520
2Oct 15, 2025 01:5819,432244,485,760211,751,0001,997,0002,539,520
3Oct 15, 2025 01:5819,433237,195,624212,769,000998,0002,539,520
4Oct 15, 2025 01:5819,443233,457,239212,872,000999,0002,539,520
5Oct 15, 2025 01:5819,445241,475,794212,892,000999,0002,433,024
6Oct 15, 2025 01:5819,448239,092,996211,926,0001,999,0002,428,928
7Oct 15, 2025 01:5819,458237,931,640213,042,0001,000,0002,539,520
8Oct 15, 2025 01:5819,471238,218,201214,183,00002,519,040
9Oct 15, 2025 01:5819,498238,899,673213,480,0001,002,0002,437,120