| Task: | Karkit |
| Sender: | jogr |
| Submission time: | 2021-10-04 10:19:44 +0300 |
| Language: | Python3 (CPython3) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 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 |
Code
# Online Python compiler (interpreter) to run Python online. # Write Python 3 code in this online editor and run it. n = int(input()) a = int(input()) b = int(input()) print(int(n/a*b))
Test details
Test 1
Verdict: ACCEPTED
| input |
|---|
| 100 1 1 |
| correct output |
|---|
| 100 |
| user output |
|---|
| 100 |
Test 2
Verdict: WRONG ANSWER
| input |
|---|
| 1 100 100 |
| correct output |
|---|
| 0 |
| user output |
|---|
| 1 |
Test 3
Verdict: WRONG ANSWER
| input |
|---|
| 50 2 3 |
| correct output |
|---|
| 25 |
| user output |
|---|
| 75 |
Test 4
Verdict: WRONG ANSWER
| input |
|---|
| 100 17 3 |
| correct output |
|---|
| 33 |
| user output |
|---|
| 17 |
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 5 5 5 |
| correct output |
|---|
| 1 |
| user output |
|---|
| 5 |
