結果
問題 | No.988 N×Mマス計算(総和) |
ユーザー | cra77756176 |
提出日時 | 2022-12-17 13:27:13 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
|
実行時間 | - |
コード長 | 732 bytes |
コンパイル時間 | 15,494 ms |
コンパイル使用メモリ | 377,456 KB |
実行使用メモリ | 13,952 KB |
最終ジャッジ日時 | 2024-11-16 21:52:48 |
合計ジャッジ時間 | 45,521 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,496 KB |
testcase_01 | AC | 1 ms
9,088 KB |
testcase_02 | AC | 1 ms
10,496 KB |
testcase_03 | AC | 1 ms
12,288 KB |
testcase_04 | AC | 1 ms
10,496 KB |
testcase_05 | AC | 1 ms
9,600 KB |
testcase_06 | AC | 1 ms
9,344 KB |
testcase_07 | AC | 1 ms
9,472 KB |
testcase_08 | AC | 1 ms
10,496 KB |
testcase_09 | AC | 1 ms
11,392 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 1,375 ms
12,416 KB |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | AC | 872 ms
11,904 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
ソースコード
fn main() { let mut xx = String::new(); std::io::Read::read_to_string(&mut std::io::stdin(), &mut xx).ok(); let xx: Vec<&str> = xx.split_whitespace().collect(); let m: usize = xx[1].parse().unwrap(); let k: u64 = xx[2].parse().unwrap(); let bb: Vec<u64> = xx[4..4 + m].iter().map(|&s| s.parse().unwrap()).collect(); let aa: Vec<u64> = xx[4 + m..].iter().map(|&s| s.parse().unwrap()).collect(); let op = match xx.get(3) { Some(&"+") => |a, b| a + b, Some(&"*") => |a, b| a * b, _ => unreachable!(), }; let mut answer = 0; for a in &aa { for b in &bb { answer += op(a, b); answer %= k; } } println!("{answer}"); }