| Task: | Ositus |
| Sender: | kpop |
| Submission time: | 2021-10-07 10:12:54 +0300 |
| Language: | Python3 (PyPy3) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| #2 | RUNTIME ERROR | 0 |
| #3 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | RUNTIME ERROR | 0.07 s | 1, 2, 3 | details |
| #2 | RUNTIME ERROR | 0.07 s | 1, 2, 3 | details |
| #3 | RUNTIME ERROR | 0.07 s | 1, 2, 3 | details |
| #4 | RUNTIME ERROR | 0.07 s | 1, 2, 3 | details |
| #5 | RUNTIME ERROR | 0.07 s | 2, 3 | details |
| #6 | RUNTIME ERROR | 0.07 s | 3 | details |
| #7 | RUNTIME ERROR | 0.09 s | 3 | details |
Code
n = int(input())
a = int(input())
b = int(input())
pienin = min(a, b)
suurin = max(a, b)
result = n//pienin
rem = n-(result*pienin)
if rem >= suurin:
result += rem//suurin
print(str(result))Test details
Test 1
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| a |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
n = int...Test 2
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| abcdefghij |
| correct output |
|---|
| 512 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
n = int...Test 3
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| abcabaacbc |
| correct output |
|---|
| 120 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
n = int...Test 4
Group: 1, 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| aaxxxxxxaa |
| correct output |
|---|
| 4 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
n = int...Test 5
Group: 2, 3
Verdict: RUNTIME ERROR
| input |
|---|
| mfyzvoxmppoxcvktmcjkryyocfweub... |
| correct output |
|---|
| 643221148 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
n = int...Test 6
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| weinscqmmpgbrlboocvtbptgbahmwv... |
| correct output |
|---|
| 831644159 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
n = int...Test 7
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| sxaoxcyrjoeieyinaqxwukgzdnhhsw... |
| correct output |
|---|
| 816016015 |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "input/code.py", line 1, in <module>
n = int...