CSES - Datatähti 2023 alku - Results
Submission details
Task:Kortit
Sender:Rixtope
Submission time:2022-11-04 11:03:09 +0200
Language:PyPy3
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.07 sdetails
#20.07 sdetails
#30.07 sdetails
#40.07 sdetails
#50.07 sdetails
#60.07 sdetails

Code

def main():
    if int(n) >= 27:
        print("YES")
    elif int(n) >= 2:
        print("MAYBE")
    else:
        print("NO")
main()

Test details

Test 1

Verdict:

input
0

correct output
NO

user output
(empty)

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

Test 2

Verdict:

input
1

correct output
NO

user output
(empty)

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

Test 3

Verdict:

input
2

correct output
MAYBE

user output
(empty)

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

Test 4

Verdict:

input
26

correct output
MAYBE

user output
(empty)

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

Test 5

Verdict:

input
27

correct output
YES

user output
(empty)

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

Test 6

Verdict:

input
52

correct output
YES

user output
(empty)

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