結果

問題 No.7 プライムナンバーゲーム
ユーザー nCk_cvnCk_cv
提出日時 2016-02-06 17:42:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 274 ms / 5,000 ms
コード長 1,217 bytes
コンパイル時間 2,187 ms
コンパイル使用メモリ 77,972 KB
実行使用メモリ 43,644 KB
最終ジャッジ日時 2024-10-01 15:40:46
合計ジャッジ時間 6,158 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,212 KB
testcase_01 AC 131 ms
41,436 KB
testcase_02 AC 212 ms
43,644 KB
testcase_03 AC 169 ms
42,584 KB
testcase_04 AC 159 ms
42,160 KB
testcase_05 AC 156 ms
42,104 KB
testcase_06 AC 205 ms
42,776 KB
testcase_07 AC 189 ms
42,868 KB
testcase_08 AC 176 ms
43,000 KB
testcase_09 AC 216 ms
43,180 KB
testcase_10 AC 128 ms
41,300 KB
testcase_11 AC 167 ms
43,056 KB
testcase_12 AC 244 ms
42,988 KB
testcase_13 AC 236 ms
43,284 KB
testcase_14 AC 270 ms
43,340 KB
testcase_15 AC 274 ms
43,192 KB
testcase_16 AC 255 ms
43,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
 
public class Main {
	static ArrayList<Integer> pl;
	static int[][] memo;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		pl = new ArrayList<Integer>();
		boolean[] isntPrime = new boolean[n+1];
		pl.add(2);
		for(int i = 3; i <= n; i += 2) {
			if(!isntPrime[i]) pl.add(i);
			for(int j = i + i; j <= n; j += i) {
				isntPrime[j] = true;
			}
		}
		memo = new int[2][n+1];
		dfs(true,n);
		if(memo[0][n] == 1) System.out.println("Win");
		else System.out.println("Lose");
	}
	static boolean dfs(boolean a,int b) {
		if(a) {
			if(memo[0][b] != 0) return memo[0][b]==1?true:false;
			for(int i = 0; i < pl.size(); i++) {
				if(b - pl.get(i) <= 1) break;
				boolean ret = dfs(false,b - pl.get(i));
				if(ret) {
					memo[0][b] = 1;
					return true;
				}
			}
			memo[0][b] = -1;
			return false;
		}
		else {
			if(memo[1][b] != 0) return memo[1][b]==1?true:false;
			for(int i = 0; i < pl.size(); i++) {
				if(b - pl.get(i) <= 1) break;
				boolean ret = dfs(true,b - pl.get(i));
				if(!ret) {
					memo[1][b] = -1;
					return false;
				}
			}
			memo[1][b] = 1;
			return true;
		}
	}
	
}
0