• Servers

    ID 当前状态 系统信息 CPU信息 内存信息 Handled requests
    6839267e 2025-7-22 1:10:26 Ubuntu 22.04.5 LTS jammy x64 Intel Xeon® Platinum 8369HB@3.3GHz 11.2 GiB/14.7 GiB
    62664f37 2025-7-22 1:09:58 Ubuntu 20.04.6 LTS focal x64 Intel Xeon® Platinum 8269CY@2.5GHz 7.3 GiB/7.5 GiB 0
  • Compiler Versions

    c

    gcc (GCC) 14.2.1 20250322
    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.cc98o2, cc.cc11o2, cc.cc14o2, cc.cc17o2, cc.cc20o2, cc.ccnoio2, cc.cc98, cc.cc11, cc.cc14, cc.cc17, cc.cc20, cc.noi, cc.noio2

    g++ (GCC) 14.2.1 20250322
    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.

    pas

    start: /usr/bin/fpc: execve: no such file or directory

    java

    start: /usr/bin/javac: execve: no such file or directory

    py.py3

    Python 3.12.10

    php

    start: /usr/bin/php: execve: no such file or directory

    rs

    start: /usr/bin/rustc: execve: no such file or directory

    hs

    start: /usr/bin/ghc: execve: no such file or directory

    go

    start: /usr/bin/go: execve: no such file or directory

    rb

    start: /usr/bin/ruby: execve: no such file or directory

    cs

    start: /usr/bin/mcs: execve: no such file or directory
  • Compile Commands

    • 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 -O2
    • C++98(O2)(cc.cc98o2)
      /usr/bin/g++ -Wall -std=c++98 -o foo foo.cc -lm -O2
    • C++11(O2)(cc.cc11o2)
      /usr/bin/g++ -Wall -std=c++11 -o foo foo.cc -lm -O2
    • C++14(O2)(cc.cc14o2)
      /usr/bin/g++ -Wall -std=c++14 -o foo foo.cc -lm -O2
    • C++17(O2)(cc.cc17o2)
      /usr/bin/g++ -Wall -std=c++17 -o foo foo.cc -lm -O2
    • C++20(O2)(cc.cc20o2)
      /usr/bin/g++ -Wall -std=c++20 -o foo foo.cc -lm -O2
    • C++14(O2, GCC 9.3.0)(cc.ccnoio2)
      /nix/store/mc677rxb3hrbv9zmskxv566fjkc6w055-gcc-wrapper-9.3.0/bin/g++ -Wall -std=c++14 -o foo foo.cc -lm -O2
    • Pascal(pas)
      /usr/bin/fpc -O2 -o/w/foo foo.pas
    • Java(java)
      /usr/bin/bash -c "javac -d /w -encoding utf8 ./Main.java && jar cvf Main.jar *.class >/dev/null"
    • Python(py)
      /usr/bin/python -c "import py_compile; py_compile.compile('/w/foo.py', '/w/foo', doraise=True)"
    • Python 2(py.py2)
      /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)"
    • PHP(php)
      /usr/bin/php foo.php
    • Rust(rs)
      /usr/bin/rustc -O -o /w/foo /w/foo.rs
    • Haskell(hs)
      /usr/bin/ghc -O -outputdir /tmp -o foo foo.hs
    • Javascript (JSC)(js)
      /usr/bin/node /w/foo.js
    • Bash(sh)
      /bin/bash /w/foo.sh
    • Golang(go)
      /usr/bin/go build -o foo foo.go
    • Ruby(rb)
      /usr/bin/ruby foo.rb
    • C#(cs)
      /usr/bin/mcs -optimize+ -out:/w/foo /w/foo.cs