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 18, 2026 02:43Josu San MartinJosu San MartinError
Source Code

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

Challenge History
DateChallengerCostTypeStatus
Sep 10, 2026 08:44Tomislav Tunkovic10.00CustomSolution Broken
Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Sep 10, 2026 08:45010,881,8151,007,00002,117,632invalid character '+' looking for beginning of value
2Sep 10, 2026 08:45010,919,0871,109,00002,117,632invalid character 'e' looking for beginning of value
3Sep 10, 2026 08:45011,117,70701,246,0002,117,632invalid character '+' after object key:value pair
4Aug 18, 2026 02:503,92145,544,97618,380,00017,302,00094,392,320
5Aug 18, 2026 02:503,92845,588,23718,490,00017,256,00094,392,320
6Aug 18, 2026 02:503,93445,590,04918,375,00017,427,00094,392,320
7Aug 18, 2026 02:503,93845,661,43918,444,00017,394,00094,392,320
8Aug 18, 2026 02:503,93845,597,97018,483,00017,353,00094,392,320
9Aug 18, 2026 02:503,94345,771,21918,385,00017,499,00094,392,320
10Aug 18, 2026 02:503,95645,833,34318,515,00017,488,00094,392,320
11Aug 18, 2026 02:503,96845,875,06118,595,00017,518,00094,392,320
12Aug 18, 2026 02:503,98254,133,21318,578,00017,667,00094,392,320