| Task: | Kortit | 
| Sender: | hongbo_zhang | 
| Submission time: | 2022-11-03 00:48:53 +0200 | 
| Language: | Python3 (PyPy3) | 
| Status: | READY | 
| Result: | 0 | 
| group | verdict | score | 
|---|---|---|
| #1 | WRONG ANSWER | 0 | 
| test | verdict | time | |
|---|---|---|---|
| #1 | WRONG ANSWER | 0.04 s | details | 
| #2 | WRONG ANSWER | 0.04 s | details | 
| #3 | WRONG ANSWER | 0.04 s | details | 
| #4 | WRONG ANSWER | 0.04 s | details | 
| #5 | WRONG ANSWER | 0.04 s | details | 
| #6 | WRONG ANSWER | 0.04 s | details | 
Code
n = int(input("how many cards do you draw:"))
if n <= 1:
    print("no")
elif n < 26:
    print("maybe")
elif n <= 52:
    print("yes")
else:
    print("there are no more cards")
    
Test details
Test 1
Verdict: WRONG ANSWER
| input | 
|---|
| 0 | 
| correct output | 
|---|
| NO | 
| user output | 
|---|
| how many cards do you draw:no | 
Test 2
Verdict: WRONG ANSWER
| input | 
|---|
| 1 | 
| correct output | 
|---|
| NO | 
| user output | 
|---|
| how many cards do you draw:no | 
Test 3
Verdict: WRONG ANSWER
| input | 
|---|
| 2 | 
| correct output | 
|---|
| MAYBE | 
| user output | 
|---|
| how many cards do you draw:may... | 
Test 4
Verdict: WRONG ANSWER
| input | 
|---|
| 26 | 
| correct output | 
|---|
| MAYBE | 
| user output | 
|---|
| how many cards do you draw:yes | 
Test 5
Verdict: WRONG ANSWER
| input | 
|---|
| 27 | 
| correct output | 
|---|
| YES | 
| user output | 
|---|
| how many cards do you draw:yes | 
Test 6
Verdict: WRONG ANSWER
| input | 
|---|
| 52 | 
| correct output | 
|---|
| YES | 
| user output | 
|---|
| how many cards do you draw:yes | 
