結果

問題 No.7 プライムナンバーゲーム
ユーザー ぴろずぴろず
提出日時 2014-12-21 00:33:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 173 ms / 5,000 ms
コード長 1,226 bytes
コンパイル時間 2,363 ms
コンパイル使用メモリ 79,000 KB
実行使用メモリ 42,164 KB
最終ジャッジ日時 2024-10-01 15:28:49
合計ジャッジ時間 5,564 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
41,948 KB
testcase_01 AC 163 ms
42,040 KB
testcase_02 AC 161 ms
41,880 KB
testcase_03 AC 160 ms
41,596 KB
testcase_04 AC 162 ms
41,848 KB
testcase_05 AC 162 ms
42,164 KB
testcase_06 AC 173 ms
41,984 KB
testcase_07 AC 163 ms
42,152 KB
testcase_08 AC 161 ms
41,768 KB
testcase_09 AC 162 ms
42,028 KB
testcase_10 AC 161 ms
41,664 KB
testcase_11 AC 161 ms
41,608 KB
testcase_12 AC 163 ms
41,628 KB
testcase_13 AC 165 ms
41,468 KB
testcase_14 AC 164 ms
41,728 KB
testcase_15 AC 164 ms
41,824 KB
testcase_16 AC 161 ms
41,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no007;

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

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		ArrayList<Integer> prime = Sieve.primeList(10000);
		int[] dp = new int[10001];
		dp[0] = dp[1] = 1;
		for(int i=2;i<=10000;i++) {
			boolean win = false;
			for(int p:prime) {
				if (i < p) {
					break;
				}
				if (dp[i-p] ==0) {
					win = true;
					break;
				}
			}
			if (win) {
				dp[i] = 1;
			}
		}
		//System.out.println(Arrays.toString(dp));
		System.out.println(dp[n] == 1 ? "Win" : "Lose");
	}

}

class Sieve {
	public static boolean[] isPrimeArray(int max) {
		boolean[] isPrime = new boolean[max+1];
		Arrays.fill(isPrime, true);
		isPrime[0] = isPrime[1] = false;
		for(int i=2;i*i<=max;i++) {
			if (isPrime[i]) {
				int j = i * 2;
				while(j<=max) {
					isPrime[j] = false;
					j += i;
				}
			}
		}
		return isPrime;
	}
	public static ArrayList<Integer> primeList(int max) {
		boolean[] isPrime = isPrimeArray(max);
		ArrayList<Integer> primeList = new ArrayList<>();
		for(int i=2;i<=max;i++) {
			if (isPrime[i]) {
				primeList.add(i);
			}
		}
		return primeList;
	}
}
0