mirror of
https://gitlab.com/mfocko/Codeforces.git
synced 2024-11-09 21:59:06 +01:00
7 lines
No EOL
201 B
Bash
Executable file
7 lines
No EOL
201 B
Bash
Executable file
#!/bin/sh
|
|
|
|
echo "[INFO] Compiling $1"
|
|
javac -cp ".;*" $1.java
|
|
|
|
echo "[INFO] Running $1"
|
|
java -XX:+UseSerialGC -XX:TieredStopAtLevel=1 -XX:NewRatio=5 -Xms8M -Xmx512M -Xss64M -DONLINE_JUDGE=true Solution |