| Task: | Kortit | 
| Sender: | boshijoshii | 
| Submission time: | 2022-11-13 19:55:10 +0200 | 
| Language: | C++ (C++17) | 
| Status: | READY | 
| Result: | 0 | 
| group | verdict | score | 
|---|---|---|
| #1 | WRONG ANSWER | 0 | 
| test | verdict | time | |
|---|---|---|---|
| #1 | WRONG ANSWER | 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;
		cout << "Please enter an integer value no greater than 52, enter 0 to exit the program";
		cin >> i;
		if (i == 0) {
			break;
		}
		else if (i == 1)
		{
			cout << "NO\n";
		}
		else if (i > 1 && i <= 26)
		{
			cout << "MAYBE\n";
		}
		else if (i > 26 && i <= 52)
		{
			cout << "YES\n";
		}
		else if (i > 52)
		{
			cout << "OUT OF RANGE\n";
		}
	}
	return 0;
}Test details
Test 1
Verdict: WRONG ANSWER
| input | 
|---|
| 0 | 
| correct output | 
|---|
| NO | 
| user output | 
|---|
| Please enter an integer value ... | 
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) | 
