結果
問題 | No.1959 Prefix MinMax |
ユーザー | akakimidori |
提出日時 | 2022-05-27 21:50:44 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,339 bytes |
コンパイル時間 | 15,140 ms |
コンパイル使用メモリ | 379,456 KB |
実行使用メモリ | 25,476 KB |
平均クエリ数 | 6.38 |
最終ジャッジ日時 | 2024-09-20 15:45:27 |
合計ジャッジ時間 | 16,959 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 20 ms
24,836 KB |
testcase_01 | AC | 19 ms
24,836 KB |
testcase_02 | WA | - |
testcase_03 | AC | 18 ms
24,452 KB |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
コンパイルメッセージ
warning: variable does not need to be mutable --> src/main.rs:36:9 | 36 | let mut p = b.clone(); | ----^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default
ソースコード
mod util { pub trait Join { fn join(self, sep: &str) -> String; } impl<T, I> Join for I where I: Iterator<Item = T>, T: std::fmt::Display, { fn join(self, sep: &str) -> String { let mut s = String::new(); use std::fmt::*; for (i, v) in self.enumerate() { if i > 0 { write!(&mut s, "{}", sep).ok(); } write!(&mut s, "{}", v).ok(); } s } } } fn read() -> Vec<usize> { let mut s = String::new(); std::io::stdin().read_line(&mut s).unwrap(); s.trim().split_whitespace().flat_map(|s| s.parse()).collect() } fn run() { use util::*; let n = read()[0]; println!("? {}", [0, 1].iter().cycle().take(n - 1).join(" ")); let b = read(); let mut p = b.clone(); let mut ask = vec![0; n - 1]; for i in 0..(n - 1) { if p[i] == p[i + 1] { ask[i] = (i % 2) ^ 1; } } println!("? {}", ask.iter().join(" ")); let q = read(); let mut ans = p.clone(); for i in 0..(n - 1) { if p[i] == p[i + 1] { ans[i + 1] = q[i + 1]; } } println!("! {}", ans.iter().join(" ")); } fn main() { let t = read()[0]; for _ in 0..t { run(); } }