結果

問題 No.7 プライムナンバーゲーム
ユーザー cra77756176cra77756176
提出日時 2022-11-20 00:00:01
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 1,008 bytes
コンパイル時間 13,571 ms
コンパイル使用メモリ 377,160 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-21 04:40:03
合計ジャッジ時間 14,736 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 132 ms
5,376 KB
testcase_03 AC 10 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 39 ms
5,376 KB
testcase_07 AC 27 ms
5,376 KB
testcase_08 AC 12 ms
5,376 KB
testcase_09 AC 59 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 26 ms
5,376 KB
testcase_12 AC 94 ms
5,376 KB
testcase_13 AC 100 ms
5,376 KB
testcase_14 AC 131 ms
5,376 KB
testcase_15 AC 124 ms
5,376 KB
testcase_16 AC 114 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::{collections::HashSet, io};

fn get_primes(max: usize) -> Vec<usize> {
    let mut is_prime = vec![true; max + 1];
    is_prime[0] = false;
    is_prime[1] = false;

    for n in 2..=max {
        if !is_prime[n] {
            continue;
        }
        if n * n > max {
            break;
        }
        for i in ((n * n)..=max).step_by(n) {
            is_prime[i] = false;
        }
    }

    (0..=max).filter(|&n| is_prime[n]).collect()
}

fn main() {
    let mut n = String::new();
    io::stdin().read_line(&mut n).ok();
    let n = n.trim().parse::<usize>().unwrap();

    let primes = get_primes(n);
    let mut table = vec![1; n + 1];

    for i in 2..=n {
        let mut reachable = HashSet::new();
        for &p in &primes {
            if p > i {
                break;
            }
            reachable.insert(table[i - p]);
        }
        table[i] = (0..=i).find(|n| !reachable.contains(n)).unwrap();
    }

    println!("{}", if table[n] > 0 { "Win" } else { "Lose" });
}
0