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

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

Challenge History
DateChallengerCostTypeStatus
Sep 10, 2026 23:01Andrew Epstein22.57CustomSolution Broken
Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Sep 10, 2026 23:02010,238,04601,247,00024,576invalid character '<' looking for beginning of value
2Sep 10, 2026 23:02010,370,87001,434,00024,576invalid character '<' looking for beginning of value
3Sep 10, 2026 23:0209,620,81801,091,00024,576invalid character '<' looking for beginning of value
4Aug 17, 2026 17:582,49831,085,11214,213,0008,525,00092,733,440
5Aug 17, 2026 17:582,51132,531,69914,396,0008,457,00092,676,096
6Aug 17, 2026 17:582,51531,301,67614,431,0008,464,00092,778,496
7Aug 17, 2026 17:582,51631,285,77814,444,0008,453,00092,737,536
8Aug 17, 2026 17:582,52031,260,95514,410,0008,523,00092,778,496
9Aug 17, 2026 17:582,52938,751,53314,511,0008,508,00092,753,920
10Aug 17, 2026 17:582,54231,314,94014,448,0008,689,00092,745,728
11Aug 17, 2026 17:582,54341,095,52114,594,0008,556,00092,729,344
12Aug 17, 2026 17:582,57642,887,91714,770,0008,680,00092,778,496