CSES - Datatähti 2025 alku - Results
Submission details
Task:Pizzat
Sender:UsernameEino
Submission time:2024-10-28 17:34:26 +0200
Language:Python3 (CPython3)
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.02 sdetails
#20.02 sdetails
#30.02 sdetails
#40.02 sdetails
#50.02 sdetails
#60.02 sdetails
#70.02 sdetails
#80.02 sdetails
#90.02 sdetails
#100.02 sdetails
#110.02 sdetails
#120.02 sdetails
#130.02 sdetails

Code

# Luetaan syöte
from functools import partial

n, m, k = (int(x) for x in input().split())
palat = m*k
jokaiselle = palat/n  
suurin = 0
pienin = 0
while palat>0:
    suurin+=1
    for x in range(0,n):
        palat-=1
    if palat>=0:
        pienin+=1  
print(pienin, suurin)


#Huoneessa on n henkilöä ja m pizzaa, joista jokaisessa on k palaa. Haluat jakaa palat mahdollisimman tasaisesti. Montako pizzapalaa kukin henkilö saa vähintään ja enintään?
#Syöte
#Syötteen ainoalla rivillä on kokonaisluvut n, m ja k.
#Kaikki kolme lukua ovat välillä 1 - 1000.
#Tuloste
#Tulosta kaksi kokonaislukua: pienin ja suurin henkilön saamien palojen määrä.
#Esimerkki
#Syöte:
#3 2 4

#Tuloste:
#2 3

#Selitys: Huoneessa on 2 pizzaa jaettavana 3 henkilölle.
#Jokaisessa pizzassa on 4 palaa, joten paloja on 2 * 4 = 8.
#Mahdollisimman tasainen jako on antaa yhdelle henkilölle 2 palaa ja kahdelle henkilölle 3 palaa.
#Arvostelu
#Saat tehtävästä 100 pistettä, jos ohjelmasi antaa oikean tuloksen kaikissa
#testeissä.

Test details

Test 1

Verdict:

input
3 2 4

correct output
2 3

user output
(empty)

Error:
SyntaxError: Non-UTF-8 code starting with '\xf6' in file /box/input/code.py on line 3, but no encoding declared; see https://python.org/dev/peps/pep-0263/ for details

Test 2

Verdict:

input
1 1 1

correct output
1 1

user output
(empty)

Error:
SyntaxError: Non-UTF-8 code starting with '\xf6' in file /box/input/code.py on line 3, but no encoding declared; see https://python.org/dev/peps/pep-0263/ for details

Test 3

Verdict:

input
1 1 2

correct output
2 2

user output
(empty)

Error:
SyntaxError: Non-UTF-8 code starting with '\xf6' in file /box/input/code.py on line 3, but no encoding declared; see https://python.org/dev/peps/pep-0263/ for details

Test 4

Verdict:

input
2 1 1

correct output
0 1

user output
(empty)

Error:
SyntaxError: Non-UTF-8 code starting with '\xf6' in file /box/input/code.py on line 3, but no encoding declared; see https://python.org/dev/peps/pep-0263/ for details

Test 5

Verdict:

input
2 5 7

correct output
17 18

user output
(empty)

Error:
SyntaxError: Non-UTF-8 code starting with '\xf6' in file /box/input/code.py on line 3, but no encoding declared; see https://python.org/dev/peps/pep-0263/ for details

Test 6

Verdict:

input
1 1000 1000

correct output
1000000 1000000

user output
(empty)

Error:
SyntaxError: Non-UTF-8 code starting with '\xf6' in file /box/input/code.py on line 3, but no encoding declared; see https://python.org/dev/peps/pep-0263/ for details

Test 7

Verdict:

input
1000 1000 1000

correct output
1000 1000

user output
(empty)

Error:
SyntaxError: Non-UTF-8 code starting with '\xf6' in file /box/input/code.py on line 3, but no encoding declared; see https://python.org/dev/peps/pep-0263/ for details

Test 8

Verdict:

input
1000 1 1

correct output
0 1

user output
(empty)

Error:
SyntaxError: Non-UTF-8 code starting with '\xf6' in file /box/input/code.py on line 3, but no encoding declared; see https://python.org/dev/peps/pep-0263/ for details

Test 9

Verdict:

input
997 995 997

correct output
995 995

user output
(empty)

Error:
SyntaxError: Non-UTF-8 code starting with '\xf6' in file /box/input/code.py on line 3, but no encoding declared; see https://python.org/dev/peps/pep-0263/ for details

Test 10

Verdict:

input
997 994 997

correct output
994 994

user output
(empty)

Error:
SyntaxError: Non-UTF-8 code starting with '\xf6' in file /box/input/code.py on line 3, but no encoding declared; see https://python.org/dev/peps/pep-0263/ for details

Test 11

Verdict:

input
997 996 995

correct output
994 995

user output
(empty)

Error:
SyntaxError: Non-UTF-8 code starting with '\xf6' in file /box/input/code.py on line 3, but no encoding declared; see https://python.org/dev/peps/pep-0263/ for details

Test 12

Verdict:

input
997 996 996

correct output
995 996

user output
(empty)

Error:
SyntaxError: Non-UTF-8 code starting with '\xf6' in file /box/input/code.py on line 3, but no encoding declared; see https://python.org/dev/peps/pep-0263/ for details

Test 13

Verdict:

input
997 995 499

correct output
497 498

user output
(empty)

Error:
SyntaxError: Non-UTF-8 code starting with '\xf6' in file /box/input/code.py on line 3, but no encoding declared; see https://python.org/dev/peps/pep-0263/ for details