結果
問題 | No.1816 MUL-DIV Game |
ユーザー | magurofly |
提出日時 | 2022-01-21 22:08:45 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,154 bytes |
コンパイル時間 | 11,828 ms |
コンパイル使用メモリ | 379,984 KB |
実行使用メモリ | 7,168 KB |
最終ジャッジ日時 | 2024-05-04 13:08:03 |
合計ジャッジ時間 | 13,405 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 0 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 5 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | AC | 5 ms
5,376 KB |
testcase_29 | WA | - |
コンパイルメッセージ
warning: variable does not need to be mutable --> src/main.rs:7:13 | 7 | let mut s = { | ----^ | | | help: remove this `mut` ... 51 | / input! { 52 | | n: usize, 53 | | a: [i64; n], 54 | | } | |_____- in this macro invocation | = note: `#[warn(unused_mut)]` on by default = note: this warning originates in the macro `input` (in Nightly builds, run with -Z macro-backtrace for more info)
ソースコード
macro_rules! input { (source = $s:expr, $($r:tt)*) => { let mut iter = $s.split_whitespace(); input_inner!{iter, $($r)*} }; ($($r:tt)*) => { let mut s = { use std::io::Read; let mut s = String::new(); std::io::stdin().read_to_string(&mut s).unwrap(); s }; let mut iter = s.split_whitespace(); input_inner!{iter, $($r)*} }; } macro_rules! input_inner { ($iter:expr) => {}; ($iter:expr, ) => {}; ($iter:expr, $var:ident : $t:tt $($r:tt)*) => { let $var = read_value!($iter, $t); input_inner!{$iter $($r)*} }; } macro_rules! read_value { ($iter:expr, ( $($t:tt),* )) => { ( $(read_value!($iter, $t)),* ) }; ($iter:expr, [ $t:tt ; $len:expr ]) => { (0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>() }; ($iter:expr, chars) => { read_value!($iter, String).chars().collect::<Vec<char>>() }; ($iter:expr, usize1) => { read_value!($iter, usize) - 1 }; ($iter:expr, $t:ty) => { $iter.next().unwrap().parse::<$t>().expect("Parse error") }; } fn main() { input! { n: usize, a: [i64; n], } if n == 1 { println!("{}", a[0]); } else if n == 2 { println!("{}", a[0] * a[1]); } else if n % 2 == 1 { println!("{}", 1); } else { let mut q = std::collections::BTreeSet::new(); for i in 0 .. n { q.insert((a[i], i)); } for i in 0 .. n - 1 { if i % 2 == 0 { let x = *q.iter().next().unwrap(); let y = *q.iter().next().unwrap(); q.remove(&x); q.remove(&y); q.insert((x.0 * y.0, n + i)); } else { let x = *q.iter().next_back().unwrap(); let y = *q.iter().next_back().unwrap(); q.remove(&x); q.remove(&y); q.insert((1, n + i)); } } let x = q.iter().next_back().unwrap(); println!("{}", x.0); } }