ID Name Runtime Info
AWK AWK awk 1.3.4
BF Brain**** bf 1.33.7, opt 14.0.6, llc 14.0.6, ld_x64 2.39.90.20221231

Classical brain**** with as many byte-sized cells as there are bytes in the memory limit.

C C gcc 9.3.0 - 12
C11 C11 gcc11 9.3.0 - 12
CBL COBOL cobc 3.0 - 4.0
CLANG Clang clang 9.0.1 - 14.0.6
CLANGX Clang++ clang++ 9.0.1 - 14.0.6
C++03 C++03 g++ 9.3.0 - 12
C++11 C++11 g++11 9.3.0 - 12
C++14 C++14 g++14 9.3.0 - 12
C++17 C++17 g++17 9.3.0 - 12
D D dmd 2.92.1 - 2.101.2
F95 Fortran gfortran 9.3.0 - 12
GAS32 Assembly (x86) as_x86 2.34 - 2.39.90.20221231, ld_x86 2.34 - 2.39.90.20221231
GAS64 Assembly (x64) as_x64 2.34 - 2.39.90.20221231, ld_x64 2.34 - 2.39.90.20221231
GO Go go 1.14.4 - 1.19.4
HASK Haskell ghc 8.8.3 - 9.0.2
JAVA8 Java 8 javac 1.8.0
KOTLIN Kotlin kotlinc 1.3.72 - 1.8.0, java 11.0.7 - 19.0.1
LUA Lua lua 5.3.3 - 5.3.6
MONOCS Mono C# csc 6.8.0.123 - 6.12.0.182, mono 6.8.0.123 - 6.12.0.182
MONOFS Mono F# fsharpc 10.2.3 - 11.0.0.0, mono 6.8.0.123 - 6.12.0.182
NASM NASM nasm 2.14.2 - 2.16.1, ld_x86 2.34 - 2.39.90.20221231
NASM64 NASM64 nasm 2.14.2 - 2.16.1, ld_x64 2.34 - 2.39.90.20221231
PAS Pascal fpc 3.0.4 - 3.2.2
PERL Perl perl 5.30.3 - 5.36.0
PHP PHP php 7.4.5 - 8.1.12
PY2 Python 2 python 2.7.18
PY3 Python 3 python3 3.8.3 - 3.10.9
PYPY2 PyPy 2 pypy 7.1.1 - 7.3.11, implementing python 2.7.13 - 2.7.18
PYPY3 PyPy 3 pypy3 7.1.1 - 7.3.11, implementing python 3.6.1 - 3.9.16
RKT Racket racket 7.6 - 8.7
RUST Rust rustc 1.66.0
Lisp Lisp sbcl 2.2.9
SED Sed sed 4.7 - 4.8
TCL TCL tclsh 8.6
TEXT Text cat 8.30 - 9.1
TUR Turing tprolog
V8JS V8 JavaScript v8dmoj 8.1.307.31 - 9.3.345.19

This is a custom version of V8 that adds six functions in order to perform I/O and aid in online judging.

  • print(...): similar to Python's print, prints all argument separated by space followed by new line.
  • flush(): flushes stdout, ensuring everything output by print() immediately shows up.
  • gets(): similar to the Ruby equivalent, returns one line of input from stdin.
  • read(bytes): read bytes bytes from stdin as an ArrayBuffer.
  • write(buffer): write a typed array, ArrayBuffer, or a view of ArrayBuffer to stdout.
  • quit(code): exits the program with code.
  • You can also assign to the global variable autoflush to control whether print() flushes.