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 15, 2026 08:28Tomislav TunkovicTomislav TunkovicError
Source Code

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

Challenge History
DateChallengerCostTypeStatus
Sep 10, 2026 23:48Andrew Epstein17.35CustomSolution Broken
Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Sep 10, 2026 23:5009,566,55801,176,00024,576invalid character '<' looking for beginning of value
2Sep 10, 2026 23:5009,567,37701,325,00024,576invalid character '<' looking for beginning of value
3Sep 10, 2026 23:5009,666,20701,305,00024,576invalid character '<' looking for beginning of value
4Aug 15, 2026 08:342,69832,932,92315,955,0008,598,00092,708,864
5Aug 15, 2026 08:342,70532,833,71515,992,0008,630,00092,737,536
6Aug 15, 2026 08:342,70932,917,84015,993,0008,661,00092,758,016
7Aug 15, 2026 08:342,71032,899,64516,009,0008,657,00092,721,152
8Aug 15, 2026 08:342,71332,883,78416,006,0008,683,00092,766,208
9Aug 15, 2026 08:342,71932,921,96316,071,0008,680,00092,721,152
10Aug 15, 2026 08:342,72032,929,41116,029,0008,727,00092,733,440
11Aug 15, 2026 08:342,72433,017,45616,061,0008,728,00092,827,648
12Aug 15, 2026 08:342,73233,122,77716,093,0008,772,00092,782,592