CSES - Datatähti 2025 alku - Results
Submission details
Task:Pizzat
Sender:masterjoona
Submission time:2024-10-28 13:34:23 +0200
Language:Python3 (PyPy3)
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.07 sdetails
#20.06 sdetails
#30.07 sdetails
#40.06 sdetails
#50.06 sdetails
#60.06 sdetails
#70.06 sdetails
#80.06 sdetails
#90.06 sdetails
#100.06 sdetails
#110.06 sdetails
#120.06 sdetails
#130.06 sdetails

Code

people_count = int(input())
pizza_count = input()
slice_count = input()

total_slice_count = int(pizza_count) * int(slice_count)
even_for_all = total_slice_count // people_count
even_for_all_plus = even_for_all

for i in range(1, even_for_all % people_count):
    even_for_all_plus += 1
print(even_for_all, even_for_all_plus)

Test details

Test 1

Verdict:

input
3 2 4

correct output
2 3

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    people_count = int(input())
ValueError: invalid literal for int() with base 10: '3 2 4'

Test 2

Verdict:

input
1 1 1

correct output
1 1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    people_count = int(input())
ValueError: invalid literal for int() with base 10: '1 1 1'

Test 3

Verdict:

input
1 1 2

correct output
2 2

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    people_count = int(input())
ValueError: invalid literal for int() with base 10: '1 1 2'

Test 4

Verdict:

input
2 1 1

correct output
0 1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    people_count = int(input())
ValueError: invalid literal for int() with base 10: '2 1 1'

Test 5

Verdict:

input
2 5 7

correct output
17 18

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    people_count = int(input())
ValueError: invalid literal for int() with base 10: '2 5 7'

Test 6

Verdict:

input
1 1000 1000

correct output
1000000 1000000

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    people_count = int(input())
ValueError: invalid literal for int() with base 10: '1 1000 1000'

Test 7

Verdict:

input
1000 1000 1000

correct output
1000 1000

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    people_count = int(input())
ValueError: invalid literal for int() with base 10: '1000 1000 1000'

Test 8

Verdict:

input
1000 1 1

correct output
0 1

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    people_count = int(input())
ValueError: invalid literal for int() with base 10: '1000 1 1'

Test 9

Verdict:

input
997 995 997

correct output
995 995

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    people_count = int(input())
ValueError: invalid literal for int() with base 10: '997 995 997'

Test 10

Verdict:

input
997 994 997

correct output
994 994

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    people_count = int(input())
ValueError: invalid literal for int() with base 10: '997 994 997'

Test 11

Verdict:

input
997 996 995

correct output
994 995

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    people_count = int(input())
ValueError: invalid literal for int() with base 10: '997 996 995'

Test 12

Verdict:

input
997 996 996

correct output
995 996

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    people_count = int(input())
ValueError: invalid literal for int() with base 10: '997 996 996'

Test 13

Verdict:

input
997 995 499

correct output
497 498

user output
(empty)

Error:
Traceback (most recent call last):
  File "input/code.py", line 1, in <module>
    people_count = int(input())
ValueError: invalid literal for int() with base 10: '997 995 499'