Task: | Kortit |
Sender: | Redapo |
Submission time: | 2022-10-31 13:46:38 +0200 |
Language: | Python3 (CPython3) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.02 s | details |
#2 | WRONG ANSWER | 0.02 s | details |
#3 | WRONG ANSWER | 0.02 s | details |
#4 | WRONG ANSWER | 0.02 s | details |
#5 | WRONG ANSWER | 0.02 s | details |
#6 | WRONG ANSWER | 0.02 s | details |
Code
try: cardsd = int(input("Draw cards: ")) print("Syöte:") print(cardsd) if cardsd < 0 or cardsd > 52: raise ValueError except ValueError: print() print("Tuloste:") print("You can only draw between 0-52 cards") if cardsd > 26 and cardsd <=52: print("Tuloste:") print("YES") elif cardsd <= 26 and cardsd > 1: print("Tuloste:") print("MAYBE") elif cardsd == 1 or cardsd == 0: print("Tuloste:") print("NO")
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
0 |
correct output |
---|
NO |
user output |
---|
Draw cards: Syöte: 0 Tuloste: NO |
Test 2
Verdict: WRONG ANSWER
input |
---|
1 |
correct output |
---|
NO |
user output |
---|
Draw cards: Syöte: 1 Tuloste: NO |
Test 3
Verdict: WRONG ANSWER
input |
---|
2 |
correct output |
---|
MAYBE |
user output |
---|
Draw cards: Syöte: 2 Tuloste: MAYBE |
Test 4
Verdict: WRONG ANSWER
input |
---|
26 |
correct output |
---|
MAYBE |
user output |
---|
Draw cards: Syöte: 26 Tuloste: MAYBE |
Test 5
Verdict: WRONG ANSWER
input |
---|
27 |
correct output |
---|
YES |
user output |
---|
Draw cards: Syöte: 27 Tuloste: YES |
Test 6
Verdict: WRONG ANSWER
input |
---|
52 |
correct output |
---|
YES |
user output |
---|
Draw cards: Syöte: 52 Tuloste: YES |