CSES - Datatähti 2023 alku - Results
Submission details
Task:Kortit
Sender:tsemii
Submission time:2022-11-09 10:43:17 +0200
Language:Python3 (PyPy3)
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.06 sdetails
#20.06 sdetails
#30.06 sdetails
#40.06 sdetails
#50.06 sdetails
#60.06 sdetails

Code

kortit = [int(x) for x in input().split()]

if kortit <=  1:
    print("NO")
if kortit >= 2 and kortit <= 26:
    print("MAYBE")
else:
    print("YES")

Test details

Test 1

Verdict:

input
0

correct output
NO

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    if kort...

Test 2

Verdict:

input
1

correct output
NO

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    if kort...

Test 3

Verdict:

input
2

correct output
MAYBE

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    if kort...

Test 4

Verdict:

input
26

correct output
MAYBE

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    if kort...

Test 5

Verdict:

input
27

correct output
YES

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    if kort...

Test 6

Verdict:

input
52

correct output
YES

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 3, in <module>
    if kort...