| Task: | Karkit |
| Sender: | jaaskelainen |
| Submission time: | 2021-10-05 20:23:54 +0300 |
| Language: | Python3 (PyPy3) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.05 s | details |
| #2 | RUNTIME ERROR | 0.07 s | details |
| #3 | WRONG ANSWER | 0.04 s | details |
| #4 | WRONG ANSWER | 0.04 s | details |
| #5 | WRONG ANSWER | 0.04 s | details |
Code
n = int(input(""))
a = int(input(""))
b = int(input(""))
solutions = []
for x in range(int(n/a)):
for y in range(int(n/b)):
if((x*a + y*b) <= n):
solutions.append(x+y)
solutions.sort()
print(solutions[-1])
Test details
Test 1
Verdict: ACCEPTED
| input |
|---|
| 100 1 1 |
| correct output |
|---|
| 100 |
| user output |
|---|
| 100 |
Test 2
Verdict: RUNTIME ERROR
| input |
|---|
| 1 100 100 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 14, in <module>
print(...Test 3
Verdict: WRONG ANSWER
| input |
|---|
| 50 2 3 |
| correct output |
|---|
| 25 |
| user output |
|---|
| 24 |
Test 4
Verdict: WRONG ANSWER
| input |
|---|
| 100 17 3 |
| correct output |
|---|
| 33 |
| user output |
|---|
| 32 |
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 5 5 5 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 0 |
