CSES - Datatähti 2023 alku - Results
Submission details
Task:Kortit
Sender:boshijoshii
Submission time:2022-11-13 22:17:34 +0200
Language:C++17
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.00 sdetails
#20.00 sdetails
#30.00 sdetails
#40.00 sdetails
#50.00 sdetails
#60.00 sdetails

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:

input
0

correct output
NO

user output
(empty)

Test 2

Verdict:

input
1

correct output
NO

user output
(empty)

Test 3

Verdict:

input
2

correct output
MAYBE

user output
(empty)

Test 4

Verdict:

input
26

correct output
MAYBE

user output
(empty)

Test 5

Verdict:

input
27

correct output
YES

user output
(empty)

Test 6

Verdict:

input
52

correct output
YES

user output
(empty)