CSES - Datatähti 2025 alku - Results
Submission details
Task:Pizzat
Sender:rottis
Submission time:2024-10-28 09:27:37 +0200
Language:Ruby
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.07 sdetails
#20.07 sdetails
#30.07 sdetails
#40.07 sdetails
#50.07 sdetails
#60.07 sdetails
#70.07 sdetails
#80.07 sdetails
#90.07 sdetails
#100.08 sdetails
#110.07 sdetails
#120.08 sdetails
#130.07 sdetails

Code

input = gets.chomp.split(" ").map(&:to_i)
n = input[0]
m = input[1]
k = input[2]

pieces = m*k
min = 0
max = 0
if pieces % n == 0:
  min = (pieces / n).to_i
  max = min
else
  min = (pieces / n).floor.to_i
  max = min + 1
end

puts("#{min} #{max}")

Test details

Test 1

Verdict:

input
3 2 4

correct output
2 3

user output
(empty)

Error:
input/code.rb:9: syntax error, unexpected ':', expecting `then' or ';' or '\n'
if pieces % n == 0:
                  ^
input/code.rb:12: syntax error, unexpected `else', expecting end-of-input

Test 2

Verdict:

input
1 1 1

correct output
1 1

user output
(empty)

Error:
input/code.rb:9: syntax error, unexpected ':', expecting `then' or ';' or '\n'
if pieces % n == 0:
                  ^
input/code.rb:12: syntax error, unexpected `else', expecting end-of-input

Test 3

Verdict:

input
1 1 2

correct output
2 2

user output
(empty)

Error:
input/code.rb:9: syntax error, unexpected ':', expecting `then' or ';' or '\n'
if pieces % n == 0:
                  ^
input/code.rb:12: syntax error, unexpected `else', expecting end-of-input

Test 4

Verdict:

input
2 1 1

correct output
0 1

user output
(empty)

Error:
input/code.rb:9: syntax error, unexpected ':', expecting `then' or ';' or '\n'
if pieces % n == 0:
                  ^
input/code.rb:12: syntax error, unexpected `else', expecting end-of-input

Test 5

Verdict:

input
2 5 7

correct output
17 18

user output
(empty)

Error:
input/code.rb:9: syntax error, unexpected ':', expecting `then' or ';' or '\n'
if pieces % n == 0:
                  ^
input/code.rb:12: syntax error, unexpected `else', expecting end-of-input

Test 6

Verdict:

input
1 1000 1000

correct output
1000000 1000000

user output
(empty)

Error:
input/code.rb:9: syntax error, unexpected ':', expecting `then' or ';' or '\n'
if pieces % n == 0:
                  ^
input/code.rb:12: syntax error, unexpected `else', expecting end-of-input

Test 7

Verdict:

input
1000 1000 1000

correct output
1000 1000

user output
(empty)

Error:
input/code.rb:9: syntax error, unexpected ':', expecting `then' or ';' or '\n'
if pieces % n == 0:
                  ^
input/code.rb:12: syntax error, unexpected `else', expecting end-of-input

Test 8

Verdict:

input
1000 1 1

correct output
0 1

user output
(empty)

Error:
input/code.rb:9: syntax error, unexpected ':', expecting `then' or ';' or '\n'
if pieces % n == 0:
                  ^
input/code.rb:12: syntax error, unexpected `else', expecting end-of-input

Test 9

Verdict:

input
997 995 997

correct output
995 995

user output
(empty)

Error:
input/code.rb:9: syntax error, unexpected ':', expecting `then' or ';' or '\n'
if pieces % n == 0:
                  ^
input/code.rb:12: syntax error, unexpected `else', expecting end-of-input

Test 10

Verdict:

input
997 994 997

correct output
994 994

user output
(empty)

Error:
input/code.rb:9: syntax error, unexpected ':', expecting `then' or ';' or '\n'
if pieces % n == 0:
                  ^
input/code.rb:12: syntax error, unexpected `else', expecting end-of-input

Test 11

Verdict:

input
997 996 995

correct output
994 995

user output
(empty)

Error:
input/code.rb:9: syntax error, unexpected ':', expecting `then' or ';' or '\n'
if pieces % n == 0:
                  ^
input/code.rb:12: syntax error, unexpected `else', expecting end-of-input

Test 12

Verdict:

input
997 996 996

correct output
995 996

user output
(empty)

Error:
input/code.rb:9: syntax error, unexpected ':', expecting `then' or ';' or '\n'
if pieces % n == 0:
                  ^
input/code.rb:12: syntax error, unexpected `else', expecting end-of-input

Test 13

Verdict:

input
997 995 499

correct output
497 498

user output
(empty)

Error:
input/code.rb:9: syntax error, unexpected ':', expecting `then' or ';' or '\n'
if pieces % n == 0:
                  ^
input/code.rb:12: syntax error, unexpected `else', expecting end-of-input