| Task: | Kortit | 
| Sender: | FenixHongell | 
| Submission time: | 2022-10-31 13:51:59 +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
n = 0
while n <= 52:
    if n <= 1 and n >= 0:
        print("NO")
    elif n < 26 and n >= 0:
        print("MAYBE")
    elif n > 26 and n >= 0:
        print("YES")
    n += 1
Test details
Test 1
Verdict: WRONG ANSWER
| input | 
|---|
| 0 | 
| correct output | 
|---|
| NO | 
| user output | 
|---|
| NO NO MAYBE MAYBE MAYBE ... Truncated  | 
Test 2
Verdict: WRONG ANSWER
| input | 
|---|
| 1 | 
| correct output | 
|---|
| NO | 
| user output | 
|---|
| NO NO MAYBE MAYBE MAYBE ... Truncated  | 
Test 3
Verdict: WRONG ANSWER
| input | 
|---|
| 2 | 
| correct output | 
|---|
| MAYBE | 
| user output | 
|---|
| NO NO MAYBE MAYBE MAYBE ... Truncated  | 
Test 4
Verdict: WRONG ANSWER
| input | 
|---|
| 26 | 
| correct output | 
|---|
| MAYBE | 
| user output | 
|---|
| NO NO MAYBE MAYBE MAYBE ... Truncated  | 
Test 5
Verdict: WRONG ANSWER
| input | 
|---|
| 27 | 
| correct output | 
|---|
| YES | 
| user output | 
|---|
| NO NO MAYBE MAYBE MAYBE ... Truncated  | 
Test 6
Verdict: WRONG ANSWER
| input | 
|---|
| 52 | 
| correct output | 
|---|
| YES | 
| user output | 
|---|
| NO NO MAYBE MAYBE MAYBE ... Truncated  | 
