评测环境信息

Sukwants 2024-02-15 16:19:41 2024-09-11 13:32:55 未知

CPU:AMD Ryzen 7 5700G / 12th Gen Intel(R) Core(TM) i7-12700 Intel(R) Xeon(R) Platinum 8269CY

系统:Ubuntu 22.04

语言环境:

语言 编译器 编译命令 运行命令
C++ C++ GCC 13.1.0 g++ a.cpp -o a.out -O2 -DONLINE_JUDGE ./a.out
C++ 14 g++ a.cpp -o a.out -std=c++14 -O2 -DONLINE_JUDGE
C++ 17 g++ a.cpp -o a.out -std=c++17 -O2 -DONLINE_JUDGE
C++ 20 g++ a.cpp -o a.out -std=c++20 -O2 -DONLINE_JUDGE
C++ 23 g++ a.cpp -o a.out -std=c++23 -O2 -DONLINE_JUDGE
C gcc a.cpp -o a.out -O2 -DONLINE_JUDGE
C# Mono 6.12.0.122 msc a.cs -define:ONLINE_JUDGE mono a.exe
Java OpenJDK 11.0.11 javac Main.java java Main
Pascal Free Pascal 3.0.4 fpc a.pas -O2 ./a
Python Python 2 Python 2.7.18 python2 -m py_compile a.py python2 a.py
Python 3 Python 3.10.12 python3 -m py_compile a.py python3 a.py
Node.js 16.1.0 node -c a.js node a.js
Ruby 2.7.0 ruby -c a.rb ruby a.rb
Haskell GHC 8.10.4 ghc a.hs -o a.out -O2 ./a.out