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 listApr 27, 2026 19:16Victor MerckléVictor MerckléError
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Apr 27, 2026 19:160491,612,832457,835,00013,994,00078,004,224diff:   map[string]any{ +  "age": s"63", -  "height": s"174", +  "height": s"168.9",    "id": s"13507",    "married": bool(false),   } stderr
2Apr 27, 2026 19:160495,914,497458,322,00016,011,00077,991,936Exit with code 1: probe_v=xml_stats_1 stdin_regular=1 st_size=136577964 probe_v=xml_stats_1 ok=0 stdin_regular=1 st_size=136577964 mmap_ok=1 input_bytes=136577964 elapsed_ms=472.348 deadline_exit=0 parse_error=1 errno=0 chars nl=1 cr=0 sp=1999875 tab=0...stderr