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 17:08Tomislav TunkovicTomislav TunkovicError
Source Code

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

Challenge History
DateChallengerCostTypeStatus
Sep 10, 2026 23:05Andrew Epstein33.71CustomSolution Broken
Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Sep 10, 2026 23:0709,365,70001,193,00024,576invalid character '<' looking for beginning of value
2Sep 10, 2026 23:0709,367,58801,258,00024,576invalid character '<' looking for beginning of value
3Sep 10, 2026 23:0709,410,22901,260,00024,576invalid character '<' looking for beginning of value
4Aug 17, 2026 18:052,50531,042,99814,161,0008,638,00092,782,592
5Aug 17, 2026 18:052,50630,946,99814,368,0008,442,00092,712,960
6Aug 17, 2026 18:052,51131,047,30914,421,0008,437,00092,823,552
7Aug 17, 2026 18:052,51331,039,22014,404,0008,470,00092,721,152
8Aug 17, 2026 18:052,51541,875,63314,438,0008,452,00092,766,208
9Aug 17, 2026 18:052,51731,047,20314,439,0008,467,00092,749,824
10Aug 17, 2026 18:052,52336,818,40014,449,0008,515,00092,753,920
11Aug 17, 2026 18:052,52731,177,23014,306,0008,693,00092,729,344
12Aug 17, 2026 18:052,53631,246,48014,504,0008,575,00092,745,728