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 02:00Marco BarboneMarco BarboneScore: 19,040Success
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 02:0019,012233,383,540208,137,0001,000,0002,424,832
2Oct 15, 2025 02:0019,016232,458,905209,181,00002,539,520
3Oct 15, 2025 02:0019,021235,195,267209,236,00002,420,736
4Oct 15, 2025 02:0019,025231,138,344209,273,00002,424,832
5Oct 15, 2025 02:0019,040236,935,969208,437,0001,002,0002,535,424
6Oct 15, 2025 02:0019,041230,031,981209,447,00002,539,520
7Oct 15, 2025 02:0019,072238,924,346208,789,000998,0002,539,520
8Oct 15, 2025 02:0019,085232,753,543207,939,0001,999,0002,519,040
9Oct 15, 2025 02:0019,091241,421,306208,998,000999,0002,539,520