Task: | Kortit |
Sender: | boshijoshii |
Submission time: | 2022-11-13 20:06:15 +0200 |
Language: | C++ (C++17) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | OUTPUT LIMIT EXCEEDED | 0 |
test | verdict | time | |
---|---|---|---|
#1 | OUTPUT LIMIT EXCEEDED | 0.00 s | details |
#2 | OUTPUT LIMIT EXCEEDED | 0.00 s | details |
#3 | OUTPUT LIMIT EXCEEDED | 0.00 s | details |
#4 | OUTPUT LIMIT EXCEEDED | 0.00 s | details |
#5 | OUTPUT LIMIT EXCEEDED | 0.00 s | details |
#6 | OUTPUT LIMIT EXCEEDED | 0.00 s | details |
Code
#include <iostream> using namespace std; int main() { while (true) { int i; cin >> i; if (i <= 1) { cout << "NO"; } else if (i > 1 && i <= 26) { cout << "MAYBE"; } else if (i > 26 && i <= 52) { cout << "YES"; } else { continue; } } return 0; }
Test details
Test 1
Verdict: OUTPUT LIMIT EXCEEDED
input |
---|
0 |
correct output |
---|
NO |
user output |
---|
(empty) |
Test 2
Verdict: OUTPUT LIMIT EXCEEDED
input |
---|
1 |
correct output |
---|
NO |
user output |
---|
(empty) |
Test 3
Verdict: OUTPUT LIMIT EXCEEDED
input |
---|
2 |
correct output |
---|
MAYBE |
user output |
---|
(empty) |
Test 4
Verdict: OUTPUT LIMIT EXCEEDED
input |
---|
26 |
correct output |
---|
MAYBE |
user output |
---|
(empty) |
Test 5
Verdict: OUTPUT LIMIT EXCEEDED
input |
---|
27 |
correct output |
---|
YES |
user output |
---|
(empty) |
Test 6
Verdict: OUTPUT LIMIT EXCEEDED
input |
---|
52 |
correct output |
---|
YES |
user output |
---|
(empty) |