結果

問題 No.7 プライムナンバーゲーム
ユーザー GrenacheGrenache
提出日時 2015-07-01 15:04:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 243 ms / 5,000 ms
コード長 953 bytes
コンパイル時間 3,466 ms
コンパイル使用メモリ 77,832 KB
実行使用メモリ 42,076 KB
最終ジャッジ日時 2024-10-01 15:34:13
合計ジャッジ時間 7,225 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,176 KB
testcase_01 AC 130 ms
41,364 KB
testcase_02 AC 243 ms
41,624 KB
testcase_03 AC 142 ms
41,116 KB
testcase_04 AC 135 ms
41,436 KB
testcase_05 AC 123 ms
41,316 KB
testcase_06 AC 165 ms
41,536 KB
testcase_07 AC 156 ms
42,076 KB
testcase_08 AC 134 ms
40,324 KB
testcase_09 AC 187 ms
41,564 KB
testcase_10 AC 122 ms
40,372 KB
testcase_11 AC 157 ms
41,384 KB
testcase_12 AC 213 ms
41,404 KB
testcase_13 AC 217 ms
41,456 KB
testcase_14 AC 238 ms
41,916 KB
testcase_15 AC 235 ms
41,472 KB
testcase_16 AC 228 ms
41,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;


public class Main_yukicoder7 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();

        boolean[] e = new boolean[n + 1];
        Arrays.fill(e, true);
        e[0] = false;
        e[1] = false;
        for (int i = 2; i <= n; i++) {
        	if (e[i]) {
        		for (int j = 2; i * j <= n; j++) {
        			e[i * j] = false;
        		}
        	}
        }

        boolean[] dp = new boolean[n + 1];
        dp[0] = true;
        dp[1] = true;
        for (int i = 2; i <= n; i++) {
        	boolean tmp = false;
        	for (int j = 2; j <= i; j++) {
        		if (e[j]) {
        			tmp |= !dp[i - j];
        		}
        	}
        	dp[i] = tmp;
        }

        if (dp[n]) {
        	System.out.println("Win");
        } else {
        	System.out.println("Lose");
        }
        
        sc.close();
    }
}
0