CSES - Datatähti 2025 alku - Results
Submission details
Task:Pizzat
Sender:Us3rNam3
Submission time:2024-10-29 00:14:51 +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

while True:
    try:
        n = int(input("people:  "))
        m = int(input("pizzas:  "))
        k = int(input("slices:  "))
        if 1 <= n <= 1000 and 1 <= m <= 1000 and 1 <= k <= 1000:
            break
        else:
            print("invalid input please choose from 1 - 1000")
    except ValueError:
        print("invalid input please choose from 1, 1000")
total_slices = m * k
slices_per_person = total_slices // n
remainder = total_slices % n
max_slices = slices_per_person + 1 if remainder > 0 else slices_per_person
min_slices = slices_per_person
print(f"min_slices per person:  {min_slices}")
print(f"max_slices per person:  {max_slices}")

Test details

Test 1

Verdict:

input
3 2 4

correct output
2 3

user output
people:  invalid input please ...

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 3, in <module>
    n = int(input("people:  "))
EOFError: EOF when reading a line

Test 2

Verdict:

input
1 1 1

correct output
1 1

user output
people:  invalid input please ...

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 3, in <module>
    n = int(input("people:  "))
EOFError: EOF when reading a line

Test 3

Verdict:

input
1 1 2

correct output
2 2

user output
people:  invalid input please ...

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 3, in <module>
    n = int(input("people:  "))
EOFError: EOF when reading a line

Test 4

Verdict:

input
2 1 1

correct output
0 1

user output
people:  invalid input please ...

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 3, in <module>
    n = int(input("people:  "))
EOFError: EOF when reading a line

Test 5

Verdict:

input
2 5 7

correct output
17 18

user output
people:  invalid input please ...

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 3, in <module>
    n = int(input("people:  "))
EOFError: EOF when reading a line

Test 6

Verdict:

input
1 1000 1000

correct output
1000000 1000000

user output
people:  invalid input please ...

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 3, in <module>
    n = int(input("people:  "))
EOFError: EOF when reading a line

Test 7

Verdict:

input
1000 1000 1000

correct output
1000 1000

user output
people:  invalid input please ...

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 3, in <module>
    n = int(input("people:  "))
EOFError: EOF when reading a line

Test 8

Verdict:

input
1000 1 1

correct output
0 1

user output
people:  invalid input please ...

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 3, in <module>
    n = int(input("people:  "))
EOFError: EOF when reading a line

Test 9

Verdict:

input
997 995 997

correct output
995 995

user output
people:  invalid input please ...

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 3, in <module>
    n = int(input("people:  "))
EOFError: EOF when reading a line

Test 10

Verdict:

input
997 994 997

correct output
994 994

user output
people:  invalid input please ...

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 3, in <module>
    n = int(input("people:  "))
EOFError: EOF when reading a line

Test 11

Verdict:

input
997 996 995

correct output
994 995

user output
people:  invalid input please ...

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 3, in <module>
    n = int(input("people:  "))
EOFError: EOF when reading a line

Test 12

Verdict:

input
997 996 996

correct output
995 996

user output
people:  invalid input please ...

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 3, in <module>
    n = int(input("people:  "))
EOFError: EOF when reading a line

Test 13

Verdict:

input
997 995 499

correct output
497 498

user output
people:  invalid input please ...

Error:
Traceback (most recent call last):
  File "/box/input/code.py", line 3, in <module>
    n = int(input("people:  "))
EOFError: EOF when reading a line