| Task: | Kortit | 
| Sender: | boshijoshii | 
| Submission time: | 2022-11-13 22:17:34 +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;
		cout << "Please enter an integer value, enter 0 to exit the program: ";
		cin >> i;
		if (cin.fail()) {
			cin.clear();
			cin.ignore(256, '\n');
			cout << "Not an integer. Try it again!" << endl;
		}
		else 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;
		}
	}
	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) | 
