Task: | Pizzat |
Sender: | onyx |
Submission time: | 2024-10-28 21:35:07 +0200 |
Language: | Rust (2021) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.00 s | details |
#2 | RUNTIME ERROR | 0.00 s | details |
#3 | RUNTIME ERROR | 0.00 s | details |
#4 | ACCEPTED | 0.00 s | details |
#5 | ACCEPTED | 0.00 s | details |
#6 | RUNTIME ERROR | 0.00 s | details |
#7 | WRONG ANSWER | 0.00 s | details |
#8 | ACCEPTED | 0.00 s | details |
#9 | WRONG ANSWER | 0.00 s | details |
#10 | WRONG ANSWER | 0.00 s | details |
#11 | WRONG ANSWER | 0.00 s | details |
#12 | WRONG ANSWER | 0.00 s | details |
#13 | WRONG ANSWER | 0.00 s | details |
Code
use std::io::{BufRead, BufReader}; fn main() { let mut input = String::new(); BufReader::new(std::io::stdin()) .read_line(&mut input) .unwrap(); let mut split = input.split_whitespace(); let people = split.next().unwrap().parse::<u16>().unwrap(); let pizzas = split.next().unwrap().parse::<u16>().unwrap(); let slices = split.next().unwrap().parse::<u16>().unwrap(); let total = pizzas * slices; let leftovers = total % people; let min = (total - leftovers) / people; let max = min + (leftovers / (leftovers % people)); println!("{} {}", min, max); }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
3 2 4 |
correct output |
---|
2 3 |
user output |
---|
2 3 |
Test 2
Verdict: RUNTIME ERROR
input |
---|
1 1 1 |
correct output |
---|
1 1 |
user output |
---|
(empty) |
Error:
thread 'main' panicked at 'attempt to divide by zero', input/code.rs:17:21 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 3
Verdict: RUNTIME ERROR
input |
---|
1 1 2 |
correct output |
---|
2 2 |
user output |
---|
(empty) |
Error:
thread 'main' panicked at 'attempt to divide by zero', input/code.rs:17:21 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 4
Verdict: ACCEPTED
input |
---|
2 1 1 |
correct output |
---|
0 1 |
user output |
---|
0 1 |
Test 5
Verdict: ACCEPTED
input |
---|
2 5 7 |
correct output |
---|
17 18 |
user output |
---|
17 18 |
Test 6
Verdict: RUNTIME ERROR
input |
---|
1 1000 1000 |
correct output |
---|
1000000 1000000 |
user output |
---|
(empty) |
Error:
thread 'main' panicked at 'attempt to divide by zero', input/code.rs:17:21 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Test 7
Verdict: WRONG ANSWER
input |
---|
1000 1000 1000 |
correct output |
---|
1000 1000 |
user output |
---|
16 17 |
Test 8
Verdict: ACCEPTED
input |
---|
1000 1 1 |
correct output |
---|
0 1 |
user output |
---|
0 1 |
Test 9
Verdict: WRONG ANSWER
input |
---|
997 995 997 |
correct output |
---|
995 995 |
user output |
---|
9 10 |
Test 10
Verdict: WRONG ANSWER
input |
---|
997 994 997 |
correct output |
---|
994 994 |
user output |
---|
8 9 |
Test 11
Verdict: WRONG ANSWER
input |
---|
997 996 995 |
correct output |
---|
994 995 |
user output |
---|
8 9 |
Test 12
Verdict: WRONG ANSWER
input |
---|
997 996 996 |
correct output |
---|
995 996 |
user output |
---|
9 10 |
Test 13
Verdict: WRONG ANSWER
input |
---|
997 995 499 |
correct output |
---|
497 498 |
user output |
---|
37 38 |