結果
問題 | No.1665 quotient replace |
ユーザー | koba-e964 |
提出日時 | 2021-09-04 10:27:59 |
言語 | Rust (1.77.0 + proconio) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,982 bytes |
コンパイル時間 | 14,356 ms |
コンパイル使用メモリ | 379,028 KB |
実行使用メモリ | 400,640 KB |
最終ジャッジ日時 | 2024-05-09 23:09:48 |
合計ジャッジ時間 | 62,623 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,488 ms
400,640 KB |
testcase_01 | AC | 2,421 ms
196,352 KB |
testcase_02 | AC | 2,421 ms
196,352 KB |
testcase_03 | AC | 2,439 ms
196,480 KB |
testcase_04 | AC | 2,495 ms
196,480 KB |
testcase_05 | AC | 2,445 ms
196,352 KB |
testcase_06 | AC | 2,474 ms
196,480 KB |
testcase_07 | AC | 2,452 ms
196,352 KB |
testcase_08 | AC | 2,523 ms
196,352 KB |
testcase_09 | AC | 2,470 ms
196,736 KB |
testcase_10 | AC | 2,619 ms
198,912 KB |
testcase_11 | AC | 2,564 ms
202,368 KB |
testcase_12 | AC | 2,489 ms
197,120 KB |
testcase_13 | AC | 2,530 ms
204,160 KB |
testcase_14 | AC | 2,652 ms
204,160 KB |
testcase_15 | AC | 2,600 ms
204,160 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
#[allow(unused_imports)] use std::cmp::*; #[allow(unused_imports)] use std::collections::*; // https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8 macro_rules! input { ($($r:tt)*) => { let stdin = std::io::stdin(); let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock())); let mut next = move || -> String{ bytes.by_ref().map(|r|r.unwrap() as char) .skip_while(|c|c.is_whitespace()) .take_while(|c|!c.is_whitespace()) .collect() }; input_inner!{next, $($r)*} }; } macro_rules! input_inner { ($next:expr) => {}; ($next:expr,) => {}; ($next:expr, $var:ident : $t:tt $($r:tt)*) => { let $var = read_value!($next, $t); input_inner!{$next $($r)*} }; } macro_rules! read_value { ($next:expr, ( $($t:tt),* )) => { ($(read_value!($next, $t)),*) }; ($next:expr, [ $t:tt ; $len:expr ]) => { (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>() }; ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error")); } trait Change { fn chmax(&mut self, x: Self); fn chmin(&mut self, x: Self); } impl<T: PartialOrd> Change for T { fn chmax(&mut self, x: T) { if *self < x { *self = x; } } fn chmin(&mut self, x: T) { if *self > x { *self = x; } } } fn main() { input! { n: usize, a: [usize; n], } const W: usize = 1_000_001; let mut fac = vec![vec![]; W]; for i in 1..W { for j in 2..(W - 1) / i + 1 { fac[i * j].push(i); } } let mut g = vec![0; W]; for i in 2..W { let mut seen = 0; for &w in &fac[i] { seen |= 1 << g[w]; } let mut mex = 0; while (seen & 1 << mex) != 0 { mex += 1; } g[i] = mex; } let mut ans = 0; for a in a { ans ^= g[a]; } println!("{}", if ans == 0 { "black" } else { "white" }); }