| Task: | Scorpion and frogs |
| Sender: | aalto25a_002 |
| Submission time: | 2025-09-03 17:27:35 +0300 |
| Language: | Python3 (PyPy3) |
| Status: | READY |
| Result: | TIME LIMIT EXCEEDED |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.04 s | details |
| #2 | ACCEPTED | 0.04 s | details |
| #3 | ACCEPTED | 0.04 s | details |
| #4 | ACCEPTED | 0.04 s | details |
| #5 | ACCEPTED | 0.04 s | details |
| #6 | ACCEPTED | 0.04 s | details |
| #7 | ACCEPTED | 0.04 s | details |
| #8 | ACCEPTED | 0.04 s | details |
| #9 | ACCEPTED | 0.04 s | details |
| #10 | ACCEPTED | 0.04 s | details |
| #11 | ACCEPTED | 0.04 s | details |
| #12 | ACCEPTED | 0.04 s | details |
| #13 | ACCEPTED | 0.04 s | details |
| #14 | ACCEPTED | 0.04 s | details |
| #15 | ACCEPTED | 0.04 s | details |
| #16 | ACCEPTED | 0.04 s | details |
| #17 | ACCEPTED | 0.05 s | details |
| #18 | ACCEPTED | 0.05 s | details |
| #19 | ACCEPTED | 0.06 s | details |
| #20 | ACCEPTED | 0.06 s | details |
| #21 | ACCEPTED | 0.07 s | details |
| #22 | TIME LIMIT EXCEEDED | -- | details |
| #23 | TIME LIMIT EXCEEDED | -- | details |
| #24 | TIME LIMIT EXCEEDED | -- | details |
| #25 | TIME LIMIT EXCEEDED | -- | details |
| #26 | TIME LIMIT EXCEEDED | -- | details |
| #27 | TIME LIMIT EXCEEDED | -- | details |
| #28 | TIME LIMIT EXCEEDED | -- | details |
| #29 | TIME LIMIT EXCEEDED | -- | details |
| #30 | TIME LIMIT EXCEEDED | -- | details |
| #31 | TIME LIMIT EXCEEDED | -- | details |
| #32 | TIME LIMIT EXCEEDED | -- | details |
| #33 | TIME LIMIT EXCEEDED | -- | details |
| #34 | TIME LIMIT EXCEEDED | -- | details |
| #35 | TIME LIMIT EXCEEDED | -- | details |
| #36 | TIME LIMIT EXCEEDED | -- | details |
| #37 | TIME LIMIT EXCEEDED | -- | details |
| #38 | RUNTIME ERROR | 0.09 s | details |
| #39 | RUNTIME ERROR | 0.09 s | details |
| #40 | RUNTIME ERROR | 0.09 s | details |
| #41 | RUNTIME ERROR | 0.09 s | details |
| #42 | RUNTIME ERROR | 0.10 s | details |
| #43 | RUNTIME ERROR | 0.09 s | details |
| #44 | RUNTIME ERROR | 0.09 s | details |
| #45 | RUNTIME ERROR | 0.09 s | details |
| #46 | RUNTIME ERROR | 0.10 s | details |
| #47 | RUNTIME ERROR | 0.09 s | details |
| #48 | RUNTIME ERROR | 0.09 s | details |
| #49 | RUNTIME ERROR | 0.09 s | details |
| #50 | RUNTIME ERROR | 0.09 s | details |
| #51 | RUNTIME ERROR | 0.10 s | details |
| #52 | RUNTIME ERROR | 0.09 s | details |
| #53 | RUNTIME ERROR | 0.10 s | details |
| #54 | RUNTIME ERROR | 0.10 s | details |
| #55 | RUNTIME ERROR | 0.09 s | details |
Code
frogs: int = int(input())
arr = [1, 2]
def frogfib(i: int) -> int:
if frogs == 0:
return 1
if i == 1:
return 2
if i == 2:
return 3
else:
return frogfib(i - 1) + frogfib(i - 2)
print(frogfib(frogs))
Test details
Test 1
Verdict: ACCEPTED
| input |
|---|
| 1 |
| correct output |
|---|
| 2 |
| user output |
|---|
| 2 |
Test 2
Verdict: ACCEPTED
| input |
|---|
| 2 |
| correct output |
|---|
| 3 |
| user output |
|---|
| 3 |
Test 3
Verdict: ACCEPTED
| input |
|---|
| 3 |
| correct output |
|---|
| 5 |
| user output |
|---|
| 5 |
Test 4
Verdict: ACCEPTED
| input |
|---|
| 4 |
| correct output |
|---|
| 8 |
| user output |
|---|
| 8 |
Test 5
Verdict: ACCEPTED
| input |
|---|
| 5 |
| correct output |
|---|
| 13 |
| user output |
|---|
| 13 |
Test 6
Verdict: ACCEPTED
| input |
|---|
| 6 |
| correct output |
|---|
| 21 |
| user output |
|---|
| 21 |
Test 7
Verdict: ACCEPTED
| input |
|---|
| 7 |
| correct output |
|---|
| 34 |
| user output |
|---|
| 34 |
Test 8
Verdict: ACCEPTED
| input |
|---|
| 8 |
| correct output |
|---|
| 55 |
| user output |
|---|
| 55 |
Test 9
Verdict: ACCEPTED
| input |
|---|
| 9 |
| correct output |
|---|
| 89 |
| user output |
|---|
| 89 |
Test 10
Verdict: ACCEPTED
| input |
|---|
| 10 |
| correct output |
|---|
| 144 |
| user output |
|---|
| 144 |
Test 11
Verdict: ACCEPTED
| input |
|---|
| 11 |
| correct output |
|---|
| 233 |
| user output |
|---|
| 233 |
Test 12
Verdict: ACCEPTED
| input |
|---|
| 12 |
| correct output |
|---|
| 377 |
| user output |
|---|
| 377 |
Test 13
Verdict: ACCEPTED
| input |
|---|
| 13 |
| correct output |
|---|
| 610 |
| user output |
|---|
| 610 |
Test 14
Verdict: ACCEPTED
| input |
|---|
| 14 |
| correct output |
|---|
| 987 |
| user output |
|---|
| 987 |
Test 15
Verdict: ACCEPTED
| input |
|---|
| 15 |
| correct output |
|---|
| 1597 |
| user output |
|---|
| 1597 |
Test 16
Verdict: ACCEPTED
| input |
|---|
| 16 |
| correct output |
|---|
| 2584 |
| user output |
|---|
| 2584 |
Test 17
Verdict: ACCEPTED
| input |
|---|
| 17 |
| correct output |
|---|
| 4181 |
| user output |
|---|
| 4181 |
Test 18
Verdict: ACCEPTED
| input |
|---|
| 18 |
| correct output |
|---|
| 6765 |
| user output |
|---|
| 6765 |
Test 19
Verdict: ACCEPTED
| input |
|---|
| 19 |
| correct output |
|---|
| 10946 |
| user output |
|---|
| 10946 |
Test 20
Verdict: ACCEPTED
| input |
|---|
| 20 |
| correct output |
|---|
| 17711 |
| user output |
|---|
| 17711 |
Test 21
Verdict: ACCEPTED
| input |
|---|
| 30 |
| correct output |
|---|
| 2178309 |
| user output |
|---|
| 2178309 |
Test 22
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 40 |
| correct output |
|---|
| 267914296 |
| user output |
|---|
| (empty) |
Test 23
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 50 |
| correct output |
|---|
| 9216450 |
| user output |
|---|
| (empty) |
Test 24
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 60 |
| correct output |
|---|
| 865709054 |
| user output |
|---|
| (empty) |
Test 25
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 70 |
| correct output |
|---|
| 659095774 |
| user output |
|---|
| (empty) |
Test 26
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 80 |
| correct output |
|---|
| 343522908 |
| user output |
|---|
| (empty) |
Test 27
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 90 |
| correct output |
|---|
| 666203437 |
| user output |
|---|
| (empty) |
Test 28
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 100 |
| correct output |
|---|
| 741707250 |
| user output |
|---|
| (empty) |
Test 29
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 200 |
| correct output |
|---|
| 319277240 |
| user output |
|---|
| (empty) |
Test 30
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 300 |
| correct output |
|---|
| 12089690 |
| user output |
|---|
| (empty) |
Test 31
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 400 |
| correct output |
|---|
| 356073916 |
| user output |
|---|
| (empty) |
Test 32
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 500 |
| correct output |
|---|
| 831535149 |
| user output |
|---|
| (empty) |
Test 33
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 600 |
| correct output |
|---|
| 627858041 |
| user output |
|---|
| (empty) |
Test 34
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 700 |
| correct output |
|---|
| 894762479 |
| user output |
|---|
| (empty) |
Test 35
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 800 |
| correct output |
|---|
| 695610340 |
| user output |
|---|
| (empty) |
Test 36
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 900 |
| correct output |
|---|
| 120428339 |
| user output |
|---|
| (empty) |
Test 37
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 1000 |
| correct output |
|---|
| 506723686 |
| user output |
|---|
| (empty) |
Test 38
Verdict: RUNTIME ERROR
| input |
|---|
| 2000 |
| correct output |
|---|
| 118272245 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 39
Verdict: RUNTIME ERROR
| input |
|---|
| 3000 |
| correct output |
|---|
| 50602578 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 40
Verdict: RUNTIME ERROR
| input |
|---|
| 4000 |
| correct output |
|---|
| 38687300 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 41
Verdict: RUNTIME ERROR
| input |
|---|
| 5000 |
| correct output |
|---|
| 644069919 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 42
Verdict: RUNTIME ERROR
| input |
|---|
| 6000 |
| correct output |
|---|
| 905964874 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 43
Verdict: RUNTIME ERROR
| input |
|---|
| 7000 |
| correct output |
|---|
| 917351342 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 44
Verdict: RUNTIME ERROR
| input |
|---|
| 8000 |
| correct output |
|---|
| 606465604 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 45
Verdict: RUNTIME ERROR
| input |
|---|
| 9000 |
| correct output |
|---|
| 676429656 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 46
Verdict: RUNTIME ERROR
| input |
|---|
| 10000 |
| correct output |
|---|
| 634342956 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 47
Verdict: RUNTIME ERROR
| input |
|---|
| 20000 |
| correct output |
|---|
| 215568895 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 48
Verdict: RUNTIME ERROR
| input |
|---|
| 30000 |
| correct output |
|---|
| 54808147 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 49
Verdict: RUNTIME ERROR
| input |
|---|
| 40000 |
| correct output |
|---|
| 242971895 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 50
Verdict: RUNTIME ERROR
| input |
|---|
| 50000 |
| correct output |
|---|
| 575576968 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 51
Verdict: RUNTIME ERROR
| input |
|---|
| 60000 |
| correct output |
|---|
| 923159168 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 52
Verdict: RUNTIME ERROR
| input |
|---|
| 70000 |
| correct output |
|---|
| 621454924 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 53
Verdict: RUNTIME ERROR
| input |
|---|
| 80000 |
| correct output |
|---|
| 562709198 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 54
Verdict: RUNTIME ERROR
| input |
|---|
| 90000 |
| correct output |
|---|
| 389404104 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 55
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 |
| correct output |
|---|
| 66655788 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...