complete 19592.c and fix compiler prerunner

This commit is contained in:
2024-07-11 02:29:05 +09:00
parent 224d71e64c
commit ada1469296
2 changed files with 56 additions and 2 deletions

4
run.py
View File

@@ -32,14 +32,14 @@ class ProblemRunEnum:
dir="./zeta_C",
runner="./a.out",
prefix="c",
prerunner="gcc -std=c11 {source}",
prerunner="gcc {source} -std=gnu11 -lm -Wall",
)
zeta_cpp: ProblemRunType = ProblemRunType(
name="zeta_cpp",
dir="./zeta_cpp",
runner="./a.out",
prefix="cpp",
prerunner="g++ -std=c++17 {source}",
prerunner="g++ {source} -std=c++17 -lm -Wall",
)
zeta_kotlin: ProblemRunType = ProblemRunType(
name="zeta_kotlin",