mirror of
https://gitlab.com/mfocko/Codeforces.git
synced 2024-11-09 13:49:06 +01:00
fix(java): add debugging output on run
Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
346dde4530
commit
5f32910486
1 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
echo "[INFO] Compiling $1"
|
||||||
javac -cp ".;*" $1.java
|
javac -cp ".;*" $1.java
|
||||||
java -Xmx512M -Xss64M -DONLINE_JUDGE=true -Duser.language=en -Duser.region=US -Duser.variant=US $1
|
|
||||||
|
echo "[INFO] Running $1"
|
||||||
|
java -XX:+UseSerialGC -XX:TieredStopAtLevel=1 -XX:NewRatio=5 -Xms8M -Xmx512M -Xss64M -DONLINE_JUDGE=true Solution
|
Loading…
Reference in a new issue