CSES - Datatähti 2025 alku - Results
Submission details
Task:Pizzat
Sender:emmou
Submission time:2024-11-01 09:42:25 +0200
Language:Rust (2021)
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#10.00 sdetails
#20.00 sdetails
#30.00 sdetails
#40.00 sdetails
#50.00 sdetails
#60.00 sdetails
#70.00 sdetails
#80.00 sdetails
#90.00 sdetails
#100.00 sdetails
#110.00 sdetails
#120.00 sdetails
#130.00 sdetails

Code

use std::io::{BufRead, BufReader};

fn main() {
    let mut input = BufReader::new(std::io::stdin());
    
    let mut line = "".to_string();
    input.read_line(&mut line).unwrap();
    line = " ".to_string()+&line; //what will happen if we panic?
    let n: i32 = line[0..1].parse().expect("jaa");
    let m: i32 = line[2..3].parse().expect("jaa");
    let k: i32 = line[4..5].parse().expect("jaa");
    let val = (m*k)/n;
    print!("{} ", val);
    if (m*k)%n==0 {
        print!("{}", val)
    } else {
        print!("{}\n", val+1)
    }
}

Test details

Test 1

Verdict:

input
3 2 4

correct output
2 3

user output
(empty)

Error:
thread 'main' panicked at 'jaa: ParseIntError { kind: InvalidDigit }', input/code.rs:9:37
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

Test 2

Verdict:

input
1 1 1

correct output
1 1

user output
(empty)

Error:
thread 'main' panicked at 'jaa: ParseIntError { kind: InvalidDigit }', input/code.rs:9:37
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

Test 3

Verdict:

input
1 1 2

correct output
2 2

user output
(empty)

Error:
thread 'main' panicked at 'jaa: ParseIntError { kind: InvalidDigit }', input/code.rs:9:37
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

Test 4

Verdict:

input
2 1 1

correct output
0 1

user output
(empty)

Error:
thread 'main' panicked at 'jaa: ParseIntError { kind: InvalidDigit }', input/code.rs:9:37
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

Test 5

Verdict:

input
2 5 7

correct output
17 18

user output
(empty)

Error:
thread 'main' panicked at 'jaa: ParseIntError { kind: InvalidDigit }', input/code.rs:9:37
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

Test 6

Verdict:

input
1 1000 1000

correct output
1000000 1000000

user output
(empty)

Error:
thread 'main' panicked at 'jaa: ParseIntError { kind: InvalidDigit }', input/code.rs:9:37
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

Test 7

Verdict:

input
1000 1000 1000

correct output
1000 1000

user output
(empty)

Error:
thread 'main' panicked at 'jaa: ParseIntError { kind: InvalidDigit }', input/code.rs:9:37
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

Test 8

Verdict:

input
1000 1 1

correct output
0 1

user output
(empty)

Error:
thread 'main' panicked at 'jaa: ParseIntError { kind: InvalidDigit }', input/code.rs:9:37
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

Test 9

Verdict:

input
997 995 997

correct output
995 995

user output
(empty)

Error:
thread 'main' panicked at 'jaa: ParseIntError { kind: InvalidDigit }', input/code.rs:9:37
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

Test 10

Verdict:

input
997 994 997

correct output
994 994

user output
(empty)

Error:
thread 'main' panicked at 'jaa: ParseIntError { kind: InvalidDigit }', input/code.rs:9:37
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

Test 11

Verdict:

input
997 996 995

correct output
994 995

user output
(empty)

Error:
thread 'main' panicked at 'jaa: ParseIntError { kind: InvalidDigit }', input/code.rs:9:37
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

Test 12

Verdict:

input
997 996 996

correct output
995 996

user output
(empty)

Error:
thread 'main' panicked at 'jaa: ParseIntError { kind: InvalidDigit }', input/code.rs:9:37
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

Test 13

Verdict:

input
997 995 499

correct output
497 498

user output
(empty)

Error:
thread 'main' panicked at 'jaa: ParseIntError { kind: InvalidDigit }', input/code.rs:9:37
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace