結果

問題 No.2124 Guess the Permutation
ユーザー akakimidoriakakimidori
提出日時 2022-11-18 22:08:35
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 980 bytes
コンパイル時間 11,314 ms
コンパイル使用メモリ 383,588 KB
実行使用メモリ 25,220 KB
平均クエリ数 374.60
最終ジャッジ日時 2024-09-20 02:29:37
合計ジャッジ時間 12,605 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let n = read();
    let mut s = vec![0; n + 1];
    s[n] = n * (n + 1) / 2;
    for i in 2..n {
        println!("? 1 {}", i);
        s[i] = read();
    }
    println!("? 2 {}", n);
    s[1] = s[n] - read();
    use util::*;
    println!("! {}", s.windows(2).map(|s| s[1] - s[0]).join(" "));
}

fn read() -> usize {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).unwrap();
    s.trim().parse().unwrap()
}

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
        }
    }
}

0