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 listMar 27, 2026 03:33olliecrowolliecrowScore: 3,149Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Mar 27, 2026 03:313,13058,591,70434,435,00002,400,256
2Mar 27, 2026 03:313,13657,935,42333,481,0001,014,0002,400,256
3Mar 27, 2026 03:313,13760,388,47834,508,00002,277,376
4Mar 27, 2026 03:313,13963,196,72633,513,0001,015,0002,277,376
5Mar 27, 2026 03:313,13955,419,48133,518,0001,015,0002,277,376
6Mar 27, 2026 03:313,14059,299,65433,529,0001,016,0002,400,256
7Mar 27, 2026 03:313,14059,501,21934,535,00002,400,256
8Mar 27, 2026 03:313,14254,649,64733,541,0001,016,0002,396,160
9Mar 27, 2026 03:333,14355,832,46933,557,0001,016,0002,392,064
10Mar 27, 2026 03:333,14464,193,39934,588,00002,404,352
11Mar 27, 2026 03:333,14564,939,57733,575,0001,017,0002,277,376
12Mar 27, 2026 03:313,14563,931,65533,574,0001,017,0002,396,160
13Mar 27, 2026 03:313,14564,097,40833,580,0001,017,0002,392,064
14Mar 27, 2026 03:313,14564,800,85533,581,0001,017,0002,277,376
15Mar 27, 2026 03:333,14663,430,58234,610,00002,400,256
16Mar 27, 2026 03:333,14664,784,41133,591,0001,017,0002,400,256
17Mar 27, 2026 03:333,14662,718,37834,601,00002,387,968
18Mar 27, 2026 03:333,14665,757,79033,592,0001,017,0002,277,376
19Mar 27, 2026 03:313,14663,620,27134,603,00002,510,848
20Mar 27, 2026 03:313,14662,253,38734,605,00002,281,472
21Mar 27, 2026 03:333,14763,982,50933,603,0001,018,0002,387,968
22Mar 27, 2026 03:313,14762,527,89833,598,0001,018,0002,277,376
23Mar 27, 2026 03:313,14861,994,81233,613,0001,018,0002,392,064
24Mar 27, 2026 03:313,14862,306,08233,605,0001,018,0002,404,352
25Mar 27, 2026 03:333,14960,119,84034,636,00002,486,272
26Mar 27, 2026 03:313,14965,181,07134,643,00002,392,064
27Mar 27, 2026 03:333,14958,957,71033,626,0001,018,0002,396,160
28Mar 27, 2026 03:313,14960,768,39334,635,00002,277,376
29Mar 27, 2026 03:333,15072,539,01834,653,00002,400,256
30Mar 27, 2026 03:313,15164,678,80834,660,00002,277,376
31Mar 27, 2026 03:313,15259,088,82333,651,0001,019,0002,277,376
32Mar 27, 2026 03:313,15359,151,39334,678,00002,281,472
33Mar 27, 2026 03:333,15366,125,96034,680,00002,514,944
34Mar 27, 2026 03:333,15367,344,25034,687,00002,400,256
35Mar 27, 2026 03:313,15462,091,03833,678,0001,020,0002,404,352
36Mar 27, 2026 03:333,16766,241,43233,843,000995,0002,277,376
37Mar 27, 2026 03:333,16767,092,05132,845,0001,990,0002,277,376
38Mar 27, 2026 03:313,16864,279,44232,858,0001,991,0002,277,376
39Mar 27, 2026 03:313,16864,289,61833,849,000995,0002,396,160
40Mar 27, 2026 03:333,16860,613,16732,862,0001,991,0002,392,064
41Mar 27, 2026 03:333,16858,059,34432,858,0001,991,0002,400,256
42Mar 27, 2026 03:313,16957,804,73434,864,00002,277,376
43Mar 27, 2026 03:333,16967,574,44832,867,0001,991,0002,277,376
44Mar 27, 2026 03:333,16959,114,25433,862,000995,0002,404,352
45Mar 27, 2026 03:333,16961,641,12432,869,0001,992,0002,277,376
46Mar 27, 2026 03:333,17059,831,05333,869,000996,0002,277,376
47Mar 27, 2026 03:333,17060,894,08832,880,0001,992,0002,400,256
48Mar 27, 2026 03:313,17159,202,88232,885,0001,993,0002,277,376
49Mar 27, 2026 03:333,17556,822,00632,931,0001,995,0002,396,160
50Mar 27, 2026 03:333,17762,963,41233,944,000998,0002,408,448
51Mar 27, 2026 03:313,18060,814,22533,985,000999,0002,387,968