CSES - Datatähti 2025 alku - Results
Submission details
Task:Pizzat
Sender:Poison
Submission time:2024-11-08 16:37:11 +0200
Language:Python3 (PyPy3)
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.04 sdetails
#20.04 sdetails
#30.04 sdetails
#40.04 sdetails
#50.04 sdetails
#60.04 sdetails
#70.04 sdetails
#80.04 sdetails
#90.04 sdetails
#100.04 sdetails
#110.04 sdetails
#120.04 sdetails
#130.04 sdetails

Code

import math

n,m,k = map(int,input("Syötä tiedot :").split())
p = m*k
t = p/n
print(math.floor(t), math.ceil(t))

Test details

Test 1

Verdict:

input
3 2 4

correct output
2 3

user output
Syötä tiedot :2 3

Test 2

Verdict:

input
1 1 1

correct output
1 1

user output
Syötä tiedot :1 1

Test 3

Verdict:

input
1 1 2

correct output
2 2

user output
Syötä tiedot :2 2

Test 4

Verdict:

input
2 1 1

correct output
0 1

user output
Syötä tiedot :0 1

Test 5

Verdict:

input
2 5 7

correct output
17 18

user output
Syötä tiedot :17 18

Test 6

Verdict:

input
1 1000 1000

correct output
1000000 1000000

user output
Syötä tiedot :1000000 100000...

Test 7

Verdict:

input
1000 1000 1000

correct output
1000 1000

user output
Syötä tiedot :1000 1000

Test 8

Verdict:

input
1000 1 1

correct output
0 1

user output
Syötä tiedot :0 1

Test 9

Verdict:

input
997 995 997

correct output
995 995

user output
Syötä tiedot :995 995

Test 10

Verdict:

input
997 994 997

correct output
994 994

user output
Syötä tiedot :994 994

Test 11

Verdict:

input
997 996 995

correct output
994 995

user output
Syötä tiedot :994 995

Test 12

Verdict:

input
997 996 996

correct output
995 996

user output
Syötä tiedot :995 996

Test 13

Verdict:

input
997 995 499

correct output
497 498

user output
Syötä tiedot :497 498