XML to JSON Sergey Svistunov

Convert 1,000,000 person records from XML to JSON as fast as possible.

Input

XML document on STDIN:

<?xml version="1.0" encoding="UTF-8"?>
<persons>
    <person id="1512376">
        <age>30</age>
        <height>169.1</height>
        <married>true</married>
        <phone code="+6"><number>1283603279</number></phone>
        <phone code="+6"><number>1659964668</number></phone>
    </person>
    ...
</persons>

Output

One JSON object per person to STDOUT, preserving order:

{
    "id": 1512376,
    "age": 30,
    "height": 169.1,
    "married": true,
    "phones": [
        {
            "code": "+6",
            "number": 1283603279
        },
        {
            "code": "+6",
            "number": 1659964668
        }
    ]
}

Constraints

  • Preserve the order of persons
  • Omit the phones field if the phone array is empty
  • Maximum number of phones per person is 3
Back to listAug 17, 2026 16:55Tomislav TunkovicTomislav TunkovicError
Source Code

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

Challenge History
DateChallengerCostTypeStatus
Sep 10, 2026 23:08Andrew Epstein33.86CustomSolution Broken
Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Sep 10, 2026 23:10013,778,68402,193,00053,248invalid character '<' looking for beginning of value
2Sep 10, 2026 23:10011,305,91602,529,00053,248invalid character '<' looking for beginning of value
3Sep 10, 2026 23:10013,663,38302,044,00053,248invalid character '<' looking for beginning of value
4Aug 17, 2026 17:452,58231,948,86814,855,0008,648,00092,745,728
5Aug 17, 2026 17:452,58731,968,82514,870,0008,675,00092,725,248
6Aug 17, 2026 17:452,59033,361,52514,879,0008,690,00092,786,688
7Aug 17, 2026 17:452,59831,945,92714,868,0008,777,00092,774,400
8Aug 17, 2026 17:452,60532,109,14714,914,0008,793,00092,758,016
9Aug 17, 2026 17:452,60532,166,77714,800,0008,910,00092,758,016
10Aug 17, 2026 17:452,60732,886,71314,849,0008,879,00092,786,688
11Aug 17, 2026 17:452,61833,778,52314,871,0008,953,00092,721,152
12Aug 17, 2026 17:452,62533,602,98514,888,0009,003,00092,700,672