結果

問題 No.7 プライムナンバーゲーム
ユーザー doyazaki012doyazaki012
提出日時 2015-05-28 14:08:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 286 ms / 5,000 ms
コード長 1,082 bytes
コンパイル時間 2,001 ms
コンパイル使用メモリ 77,444 KB
実行使用メモリ 41,736 KB
最終ジャッジ日時 2024-10-01 15:32:48
合計ジャッジ時間 5,816 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,156 KB
testcase_01 AC 125 ms
41,308 KB
testcase_02 AC 153 ms
41,736 KB
testcase_03 AC 128 ms
41,460 KB
testcase_04 AC 131 ms
40,672 KB
testcase_05 AC 136 ms
41,484 KB
testcase_06 AC 175 ms
41,096 KB
testcase_07 AC 155 ms
40,584 KB
testcase_08 AC 144 ms
41,532 KB
testcase_09 AC 194 ms
41,280 KB
testcase_10 AC 124 ms
41,656 KB
testcase_11 AC 160 ms
41,300 KB
testcase_12 AC 239 ms
41,396 KB
testcase_13 AC 239 ms
41,324 KB
testcase_14 AC 286 ms
41,500 KB
testcase_15 AC 278 ms
40,820 KB
testcase_16 AC 262 ms
41,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Yuki7{
	public static final int DATA_MAX = 11000;
	public static final boolean WIN = true;
	public static final boolean LOSE = false;
	public static boolean[] done = new boolean[DATA_MAX];
	public static boolean[] dp = new boolean[DATA_MAX];
	public static boolean[] prime = new boolean[DATA_MAX];



	static boolean checkWinner(int i){
		if(done[i]==true) return dp[i];
		boolean res = LOSE;
		if(i==0 || i==1){res = WIN;}
		else {
			for(int j=2;j<i;j++){
				if(prime[j]==false && checkWinner(i-j)==LOSE){
					res = WIN;
					break;
				}
			}
		}
		done[i] = true;
		dp[i] = res;
		return res;
	}

	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		int n = stdIn.nextInt();
		for(int i=2;i<=n;i++){
			if(prime[i]==false){
				int j =2;
				while(j*i <= n) {
					prime[j*i] = true;
					j++;
				}
			}
		}
		//for(int i=2;i<n;i++) {if(prime[i]==false) {System.out.println(i);}}
		boolean answer = checkWinner(n);
		if(answer==true){
			System.out.println("Win");
		}
		else{
			System.out.println("Lose");
		}
	}
}
0