Task: | Kortit |
Sender: | DualRed |
Submission time: | 2022-11-01 19:46:31 +0200 |
Language: | Java |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
test | verdict | time | |
---|---|---|---|
#1 | RUNTIME ERROR | 0.09 s | details |
#2 | RUNTIME ERROR | 0.09 s | details |
#3 | RUNTIME ERROR | 0.09 s | details |
#4 | RUNTIME ERROR | 0.09 s | details |
#5 | RUNTIME ERROR | 0.09 s | details |
#6 | RUNTIME ERROR | 0.09 s | details |
Code
import java.util.Scanner; class Sadonkorjuu { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int count = Integer.parseInt(sc.nextLine()); if (count <= 1){ System.out.println("NO"); } else if (count > 26){ System.out.println("YES"); } else{ System.out.println("MAYBE"); } sc.close(); } }
Test details
Test 1
Verdict: RUNTIME ERROR
input |
---|
0 |
correct output |
---|
NO |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class main Caused by: java.lang.ClassNotFoundException:...
Test 2
Verdict: RUNTIME ERROR
input |
---|
1 |
correct output |
---|
NO |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class main Caused by: java.lang.ClassNotFoundException:...
Test 3
Verdict: RUNTIME ERROR
input |
---|
2 |
correct output |
---|
MAYBE |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class main Caused by: java.lang.ClassNotFoundException:...
Test 4
Verdict: RUNTIME ERROR
input |
---|
26 |
correct output |
---|
MAYBE |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class main Caused by: java.lang.ClassNotFoundException:...
Test 5
Verdict: RUNTIME ERROR
input |
---|
27 |
correct output |
---|
YES |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class main Caused by: java.lang.ClassNotFoundException:...
Test 6
Verdict: RUNTIME ERROR
input |
---|
52 |
correct output |
---|
YES |
user output |
---|
(empty) |
Error:
Error: Could not find or load main class main Caused by: java.lang.ClassNotFoundException:...