結果
問題 | No.1665 quotient replace |
ユーザー | Strorkis |
提出日時 | 2021-09-03 23:25:08 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 220 ms / 3,000 ms |
コード長 | 3,387 bytes |
コンパイル時間 | 14,392 ms |
コンパイル使用メモリ | 379,252 KB |
実行使用メモリ | 17,536 KB |
最終ジャッジ日時 | 2024-05-09 07:24:44 |
合計ジャッジ時間 | 17,375 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 14 ms
9,724 KB |
testcase_01 | AC | 15 ms
9,636 KB |
testcase_02 | AC | 14 ms
9,728 KB |
testcase_03 | AC | 16 ms
9,752 KB |
testcase_04 | AC | 14 ms
9,728 KB |
testcase_05 | AC | 15 ms
9,688 KB |
testcase_06 | AC | 16 ms
9,808 KB |
testcase_07 | AC | 15 ms
9,708 KB |
testcase_08 | AC | 15 ms
9,656 KB |
testcase_09 | AC | 19 ms
9,860 KB |
testcase_10 | AC | 80 ms
12,376 KB |
testcase_11 | AC | 154 ms
15,744 KB |
testcase_12 | AC | 28 ms
10,348 KB |
testcase_13 | AC | 201 ms
17,468 KB |
testcase_14 | AC | 207 ms
17,536 KB |
testcase_15 | AC | 207 ms
17,408 KB |
testcase_16 | AC | 199 ms
17,464 KB |
testcase_17 | AC | 220 ms
17,536 KB |
testcase_18 | AC | 15 ms
9,676 KB |
testcase_19 | AC | 15 ms
9,676 KB |
testcase_20 | AC | 14 ms
9,628 KB |
testcase_21 | AC | 13 ms
9,724 KB |
testcase_22 | AC | 13 ms
9,632 KB |
testcase_23 | AC | 14 ms
9,636 KB |
testcase_24 | AC | 14 ms
9,684 KB |
testcase_25 | AC | 14 ms
9,660 KB |
testcase_26 | AC | 15 ms
9,728 KB |
testcase_27 | AC | 14 ms
9,600 KB |
testcase_28 | AC | 17 ms
10,004 KB |
testcase_29 | AC | 19 ms
10,124 KB |
testcase_30 | AC | 51 ms
13,628 KB |
testcase_31 | AC | 67 ms
15,744 KB |
testcase_32 | AC | 155 ms
15,348 KB |
testcase_33 | AC | 65 ms
11,776 KB |
testcase_34 | AC | 126 ms
14,336 KB |
testcase_35 | AC | 121 ms
13,824 KB |
testcase_36 | AC | 123 ms
14,080 KB |
testcase_37 | AC | 115 ms
13,596 KB |
testcase_38 | AC | 134 ms
14,328 KB |
testcase_39 | AC | 101 ms
13,016 KB |
testcase_40 | AC | 91 ms
12,876 KB |
testcase_41 | AC | 88 ms
13,000 KB |
testcase_42 | AC | 14 ms
9,668 KB |
testcase_43 | AC | 14 ms
9,540 KB |
ソースコード
pub mod io { use std::io::{BufRead, ErrorKind}; pub fn scan<R: BufRead>(r: &mut R) -> Vec<u8> { let mut res = Vec::new(); loop { let buf = match r.fill_buf() { Ok(buf) => buf, Err(e) if e.kind() == ErrorKind::Interrupted => continue, Err(e) => panic!("{}", e), }; let (done, used, buf) = { match buf.iter().position(u8::is_ascii_whitespace) { Some(i) => (i > 0 || res.len() > 0, i + 1, &buf[..i]), None => (buf.is_empty(), buf.len(), buf), } }; res.extend_from_slice(buf); r.consume(used); if done { return res; } } } #[macro_export] macro_rules! scan { ($r:expr, [$t:tt; $n:expr]) => { (0..$n).map(|_| scan!($r, $t)).collect::<Vec<_>>() }; ($r:expr, [$t:tt]) => { scan!($r, [$t; scan!($r, usize)]) }; ($r:expr, ($($t:tt),*)) => { ($(scan!($r, $t)),*) }; ($r:expr, Usize1) => { scan!($r, usize) - 1 }; ($r:expr, Bytes) => { io::scan($r) }; ($r:expr, String) => { String::from_utf8(scan!($r, Bytes)).unwrap() }; ($r:expr, $t:ty) => { scan!($r, String).parse::<$t>().unwrap() }; } #[macro_export] macro_rules! input { ($r:expr, $($($v:ident)* : $t:tt),* $(,)?) => { $(let $($v)* = scan!($r, $t);)* }; } } pub mod prime_factorize { pub struct PrimeFactorize { mpf: Vec<usize>, } impl PrimeFactorize { pub fn new(n: usize) -> Self { let mut mpf = (0..=n).collect::<Vec<_>>(); for i in 2.. { if i * i > n { break; } if mpf[i] < i { continue; } for j in (i * i..=n).step_by(i) { if mpf[j] == j { mpf[j] = i; } } } Self { mpf, } } pub fn prime_factorize(&self, mut n: usize) -> Vec<usize> { let mut res = Vec::new(); while n > 1 { res.push(self.mpf[n]); n /= self.mpf[n]; } res } pub fn count_prime_factors(&self, mut n: usize) -> usize { let mut res = 0; while n > 1 { res += 1; n /= self.mpf[n]; } res } } } use prime_factorize::PrimeFactorize; const MAX: usize = 1_000_000; fn run<R: std::io::BufRead, W: std::io::Write>(reader: &mut R, writer: &mut W) { input! { reader, n: usize, a: [usize; n], } let pf = PrimeFactorize::new(MAX); let mut xor = 0; for a in a { xor ^= pf.count_prime_factors(a); } writeln!(writer, "{}", if xor > 0 { "white" } else { "black" }).ok(); } fn main() { let (stdin, stdout) = (std::io::stdin(), std::io::stdout()); let ref mut reader = std::io::BufReader::new(stdin.lock()); let ref mut writer = std::io::BufWriter::new(stdout.lock()); run(reader, writer); }