結果

問題 No.7 プライムナンバーゲーム
ユーザー taotao54321taotao54321
提出日時 2018-10-14 22:11:44
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 1,041 bytes
コンパイル時間 12,738 ms
コンパイル使用メモリ 378,552 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-01 16:14:50
合計ジャッジ時間 12,629 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 39 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 11 ms
5,248 KB
testcase_07 AC 8 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 16 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 7 ms
5,248 KB
testcase_12 AC 28 ms
5,248 KB
testcase_13 AC 30 ms
5,248 KB
testcase_14 AC 39 ms
5,248 KB
testcase_15 AC 37 ms
5,248 KB
testcase_16 AC 34 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(non_snake_case)]

use std::io::{ self, prelude::* };

macro_rules! pick {
    ($tokens:expr) => {
        $tokens.next().unwrap().parse().expect("parse error")
    }
}

fn eratos(N: usize) -> Vec<bool> {
    let mut prime = vec![true; N+1];
    prime[0] = false;
    prime[1] = false;

    for i in 2..=N {
        if !prime[i] { continue; }

        for j in (2*i..).step_by(i) {
            if j > N { break; }
            prime[j] = false;
        }
    }

    prime
}

fn main() {
    let mut s = String::new();
    io::stdin().read_to_string(&mut s).expect("i/o error");
    let mut tokens = s.split_whitespace();

    let N: usize = pick!(tokens);

    let prime = eratos(N);

    let mut win = vec![false; N+1];
    win[0] = true;
    win[1] = true;
    for i in 2..=N {
        for j in 2..i {
            if !prime[j] { continue; }
            if !win[i-j] {
                win[i] = true;
                break;
            }
        }
    }

    let ans = win[N];

    println!("{}", if ans { "Win" } else { "Lose" });
}
0