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