| Task: | Kortit |
| Sender: | Suhonen |
| Submission time: | 2022-11-01 11:42:10 +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
from time import time
start_time = time()
#input = int(input())
input = 0
if input <= 1:
print("NO")
elif 2 <= input <= 26:
print("MAYBE")
elif 27 <= input <= 52:
print("YES")
time_taken = time() - start_time
print("Time taken: ", time_taken)Test details
Test 1
Verdict: WRONG ANSWER
| input |
|---|
| 0 |
| correct output |
|---|
| NO |
| user output |
|---|
| NO Time taken: 1.025199890136718... |
Test 2
Verdict: WRONG ANSWER
| input |
|---|
| 1 |
| correct output |
|---|
| NO |
| user output |
|---|
| NO Time taken: 1.001358032226562... |
Test 3
Verdict: WRONG ANSWER
| input |
|---|
| 2 |
| correct output |
|---|
| MAYBE |
| user output |
|---|
| NO Time taken: 1.33514404296875e... |
Test 4
Verdict: WRONG ANSWER
| input |
|---|
| 26 |
| correct output |
|---|
| MAYBE |
| user output |
|---|
| NO Time taken: 1.001358032226562... |
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 27 |
| correct output |
|---|
| YES |
| user output |
|---|
| NO Time taken: 9.775161743164062... |
Test 6
Verdict: WRONG ANSWER
| input |
|---|
| 52 |
| correct output |
|---|
| YES |
| user output |
|---|
| NO Time taken: 1.001358032226562... |
