結果

問題 No.7 プライムナンバーゲーム
ユーザー kou6839kou6839
提出日時 2014-11-09 12:24:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 269 ms / 5,000 ms
コード長 744 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 77,632 KB
実行使用メモリ 54,744 KB
最終ジャッジ日時 2024-10-01 15:28:07
合計ジャッジ時間 5,601 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,184 KB
testcase_01 AC 128 ms
54,168 KB
testcase_02 AC 173 ms
54,476 KB
testcase_03 AC 124 ms
54,052 KB
testcase_04 AC 130 ms
53,984 KB
testcase_05 AC 139 ms
53,924 KB
testcase_06 AC 169 ms
54,288 KB
testcase_07 AC 149 ms
54,236 KB
testcase_08 AC 146 ms
54,296 KB
testcase_09 AC 193 ms
54,316 KB
testcase_10 AC 109 ms
52,888 KB
testcase_11 AC 161 ms
54,348 KB
testcase_12 AC 219 ms
54,604 KB
testcase_13 AC 235 ms
54,516 KB
testcase_14 AC 269 ms
54,472 KB
testcase_15 AC 262 ms
54,744 KB
testcase_16 AC 245 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 

public class Main {
	static boolean[] era;
	static int[] dp;
	static int dfs(int now){
		if(dp[now]!=0) return dp[now];
		for(int i=2;i<=now;i++){
			if(era[i]){
				if(dfs(now-i)==-1){
					return dp[now]=1;
				}
			}
		}
		return dp[now]=-1;
	}
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N =sc.nextInt();
		era=new boolean[N+1];
		dp=new int[N+1];
		dp[0]=1;
		dp[1]=1;
		dp[2]=-1;
		dp[3]=-1;
		dp[5]=1;
		Arrays.fill(era, true);
		for(int i=2;i*i<=N;i++){
			if(era[i]){
				for(int j=i*2;j<=N;j+=i){
					era[j]=false;
				}
			}
		}
		if(dfs(N)==1){
			System.out.println("Win");
		}else{
			System.out.println("Lose");
		}
	}
}	
0