結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | phspls |
提出日時 | 2020-07-07 16:09:12 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 1,640 ms / 5,000 ms |
コード長 | 1,218 bytes |
コンパイル時間 | 12,010 ms |
コンパイル使用メモリ | 402,048 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-01 16:37:43 |
合計ジャッジ時間 | 21,209 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1,640 ms
6,816 KB |
testcase_03 | AC | 40 ms
6,816 KB |
testcase_04 | AC | 8 ms
6,820 KB |
testcase_05 | AC | 8 ms
6,820 KB |
testcase_06 | AC | 302 ms
6,820 KB |
testcase_07 | AC | 173 ms
6,824 KB |
testcase_08 | AC | 62 ms
6,820 KB |
testcase_09 | AC | 524 ms
6,820 KB |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 178 ms
6,816 KB |
testcase_12 | AC | 1,034 ms
6,816 KB |
testcase_13 | AC | 1,133 ms
6,816 KB |
testcase_14 | AC | 1,613 ms
6,820 KB |
testcase_15 | AC | 1,555 ms
6,816 KB |
testcase_16 | AC | 1,331 ms
6,820 KB |
ソースコード
fn get_primes(n: usize) -> Vec<usize> { let mut flgs = vec![true; n+1]; flgs[0] = false; flgs[1] = false; let limit = (n as f64).sqrt().ceil() as usize + 1; for i in 2..=limit { if !flgs[i] { continue; } for j in i..=(n/i) { flgs[j*i] = false; } } flgs.iter().enumerate().filter(|&pair| *pair.1).map(|pair| pair.0).collect() } fn main() { let mut n = String::new(); std::io::stdin().read_line(&mut n).ok(); let n: usize = n.trim().parse().unwrap(); let primes: Vec<usize> = get_primes(n); let mut result: Vec<Option<usize>> = vec![None; n+1]; result[2] = Some(0); if n > 2 { result[3] = Some(0); } for i in 4..=n { let mut temp: Vec<usize> =vec![]; for p in primes.iter() { if *p > i - 2 { break; } if temp.contains(&p) { continue; } temp.push(result[i - p].unwrap()); } temp.sort(); result[i] = temp.iter().enumerate() .filter(|pair| pair.0 != *pair.1) .map(|pair| pair.0) .nth(0) .or(Some(temp.len())); } println!("{}", if result[n] == Some(0) { "Lose" } else { "Win" }); }