• Servers

    ID Status OS Info CPU Info Memory Info Handled requests
    68f11168 2026-1-20 8:10:15 Ubuntu 22.04 LTS jammy x64 AMD EPYC 7K83 64-Core Processor@0GHz 3.3 GiB/3.6 GiB 0
  • Compiler Versions

    bash

    GNU bash, version 5.3.3(1)-release (x86_64-pc-linux-gnu)
    Copyright (C) 2025 Free Software Foundation, Inc.
    License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
    
    This is free software; you are free to change and redistribute it.
    There is NO WARRANTY, to the extent permitted by law.

    c

    gcc (GCC) 14.3.0
    Copyright (C) 2024 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.  There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

    cc, cc.cc17o2, cc.cc20, cc.cc20o2

    g++ (GCC) 14.3.0
    Copyright (C) 2024 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.  There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

    py.py3

    Python 3.13.7
  • Compile Commands

    • Bash(bash)
      /bin/bash foo.sh
    • C(c)
      /usr/bin/gcc -Wall --std=c99 -o foo foo.c -lm
    • C++(cc)
      /usr/bin/g++ -Wall -std=c++14 -o foo foo.cc -lm -I/include
    • C++17(O2)(cc.cc17o2)
      /usr/bin/g++ -Wall -std=c++17 -o foo foo.cc -lm -O2 -I/include
    • C++20(cc.cc20)
      /usr/bin/g++ -Wall -std=c++20 -o foo foo.cc -lm -I/include
    • C++20(O2)(cc.cc20o2)
      /usr/bin/g++ -Wall -std=c++20 -o foo foo.cc -lm -O2 -I/include
    • Python(py)
      /usr/bin/python -c "import py_compile; py_compile.compile('/w/foo.py', '/w/foo', doraise=True)"
    • Python 3(py.py3)
      /usr/bin/python3 -c "import py_compile; py_compile.compile('/w/foo.py', '/w/foo', doraise=True)"