結果
問題 | No.2085 Directed Complete Graph |
ユーザー | akakimidori |
提出日時 | 2022-09-26 22:47:02 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,068 bytes |
コンパイル時間 | 10,810 ms |
コンパイル使用メモリ | 402,036 KB |
実行使用メモリ | 25,488 KB |
平均クエリ数 | 2359.41 |
最終ジャッジ日時 | 2024-06-02 00:28:16 |
合計ジャッジ時間 | 13,880 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
fn main() { let n = read(); let mut p = (1..=n).collect::<Vec<_>>(); p.sort_by(|a, b| { println!("? {} {}", *a, *b); let res = read(); use std::cmp::Ordering::*; if res == 1 { Less } else { Greater } }); println!("!"); println!("{}", p.len()); use util::*; println!("{}", p.iter().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 } } }