CSES - Datatähti 2023 alku - Results
Submission details
Task:Kortit
Sender:FenixHongell
Submission time:2022-10-31 13:54:58 +0200
Language:CPython3
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.02 sdetails
#20.02 sdetails
#30.02 sdetails
#40.02 sdetails
#50.02 sdetails
#60.02 sdetails

Code

n = input()
_n = 0
while _n >= 52:
    if _n <= 1 and _n >= 0:
        print("NO")
    elif _n < 26 and _n >= 0:
        print("MAYBE")
    elif _n > 26 and _n >= 0:
        print("YES")
    _n += 1
    _n+=1
  

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)