| Task: | Pizzat | 
| Sender: | Ihminen | 
| Submission time: | 2024-10-28 15:17:33 +0200 | 
| Language: | Python3 (PyPy3) | 
| Status: | READY | 
| Result: | 0 | 
| group | verdict | score | 
|---|---|---|
| #1 | RUNTIME ERROR | 0 | 
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.04 s | details | 
| #2 | RUNTIME ERROR | 0.06 s | details | 
| #3 | RUNTIME ERROR | 0.06 s | details | 
| #4 | WRONG ANSWER | 0.04 s | details | 
| #5 | WRONG ANSWER | 0.04 s | details | 
| #6 | RUNTIME ERROR | 0.07 s | details | 
| #7 | RUNTIME ERROR | 0.06 s | details | 
| #8 | WRONG ANSWER | 0.04 s | details | 
| #9 | RUNTIME ERROR | 0.06 s | details | 
| #10 | RUNTIME ERROR | 0.07 s | details | 
| #11 | WRONG ANSWER | 0.04 s | details | 
| #12 | WRONG ANSWER | 0.04 s | details | 
| #13 | WRONG ANSWER | 0.04 s | details | 
Code
syöte = input()
splitattuSyöte = syöte.split(' ')
henkilöt = int(splitattuSyöte[0])
pitsat = int(splitattuSyöte[1])
palat = int(splitattuSyöte[2])
palat_LKM = pitsat*palat
jakojäännös = palat_LKM % henkilöt
suurin = palat_LKM // henkilöt
yliHenkilöt =  henkilöt // jakojäännös
print(jakojäännös, suurin+yliHenkilöt)
Test details
Test 1
Verdict: ACCEPTED
| input | 
|---|
| 3 2 4 | 
| correct output | 
|---|
| 2 3 | 
| user output | 
|---|
| 2 3 | 
Test 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 1 1 1 | 
| correct output | 
|---|
| 1 1 | 
| user output | 
|---|
| (empty) | 
Error:
Traceback (most recent call last):
  File "input/code.py", line 14, in <module>
    yliHenkilöt =  henkilöt // jakojäännös
ZeroDivisionError: integer division or modulo by zeroTest 3
Verdict: RUNTIME ERROR
| input | 
|---|
| 1 1 2 | 
| correct output | 
|---|
| 2 2 | 
| user output | 
|---|
| (empty) | 
Error:
Traceback (most recent call last):
  File "input/code.py", line 14, in <module>
    yliHenkilöt =  henkilöt // jakojäännös
ZeroDivisionError: integer division or modulo by zeroTest 4
Verdict: WRONG ANSWER
| input | 
|---|
| 2 1 1 | 
| correct output | 
|---|
| 0 1 | 
| user output | 
|---|
| 1 2 | 
Test 5
Verdict: WRONG ANSWER
| input | 
|---|
| 2 5 7 | 
| correct output | 
|---|
| 17 18 | 
| user output | 
|---|
| 1 19 | 
Test 6
Verdict: RUNTIME ERROR
| input | 
|---|
| 1 1000 1000 | 
| correct output | 
|---|
| 1000000 1000000 | 
| user output | 
|---|
| (empty) | 
Error:
Traceback (most recent call last):
  File "input/code.py", line 14, in <module>
    yliHenkilöt =  henkilöt // jakojäännös
ZeroDivisionError: integer division or modulo by zeroTest 7
Verdict: RUNTIME ERROR
| input | 
|---|
| 1000 1000 1000 | 
| correct output | 
|---|
| 1000 1000 | 
| user output | 
|---|
| (empty) | 
Error:
Traceback (most recent call last):
  File "input/code.py", line 14, in <module>
    yliHenkilöt =  henkilöt // jakojäännös
ZeroDivisionError: integer division or modulo by zeroTest 8
Verdict: WRONG ANSWER
| input | 
|---|
| 1000 1 1 | 
| correct output | 
|---|
| 0 1 | 
| user output | 
|---|
| 1 1000 | 
Test 9
Verdict: RUNTIME ERROR
| input | 
|---|
| 997 995 997 | 
| correct output | 
|---|
| 995 995 | 
| user output | 
|---|
| (empty) | 
Error:
Traceback (most recent call last):
  File "input/code.py", line 14, in <module>
    yliHenkilöt =  henkilöt // jakojäännös
ZeroDivisionError: integer division or modulo by zeroTest 10
Verdict: RUNTIME ERROR
| input | 
|---|
| 997 994 997 | 
| correct output | 
|---|
| 994 994 | 
| user output | 
|---|
| (empty) | 
Error:
Traceback (most recent call last):
  File "input/code.py", line 14, in <module>
    yliHenkilöt =  henkilöt // jakojäännös
ZeroDivisionError: integer division or modulo by zeroTest 11
Verdict: WRONG ANSWER
| input | 
|---|
| 997 996 995 | 
| correct output | 
|---|
| 994 995 | 
| user output | 
|---|
| 2 1492 | 
Test 12
Verdict: WRONG ANSWER
| input | 
|---|
| 997 996 996 | 
| correct output | 
|---|
| 995 996 | 
| user output | 
|---|
| 1 1992 | 
Test 13
Verdict: WRONG ANSWER
| input | 
|---|
| 997 995 499 | 
| correct output | 
|---|
| 497 498 | 
| user output | 
|---|
| 996 498 | 
