結果

問題 No.7 プライムナンバーゲーム
ユーザー kyawashellkyawashell
提出日時 2017-12-08 09:57:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 5,000 ms
コード長 963 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 77,976 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-10-01 16:07:43
合計ジャッジ時間 4,886 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,212 KB
testcase_01 AC 105 ms
39,920 KB
testcase_02 AC 142 ms
41,416 KB
testcase_03 AC 131 ms
41,196 KB
testcase_04 AC 125 ms
40,144 KB
testcase_05 AC 139 ms
41,484 KB
testcase_06 AC 128 ms
40,468 KB
testcase_07 AC 129 ms
40,468 KB
testcase_08 AC 137 ms
41,172 KB
testcase_09 AC 150 ms
41,384 KB
testcase_10 AC 126 ms
41,280 KB
testcase_11 AC 130 ms
41,196 KB
testcase_12 AC 137 ms
41,320 KB
testcase_13 AC 138 ms
41,020 KB
testcase_14 AC 148 ms
40,396 KB
testcase_15 AC 142 ms
41,124 KB
testcase_16 AC 140 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
	static void gethurui(boolean hurui[],int n){
		hurui[0] = hurui[1] = false;
		for(int i = 2;i <= n;i++)
			hurui[i] = true;
		for(int i = 2;i <= (int)(Math.sqrt(n) + 0.1);i++){
			if(!hurui[i])
				continue;
			for(int j = i * 2;j <= n;j += i){
				hurui[j] = false;
			}
		}
	}
	public static void main(String args[]) {
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		scan.close();
		boolean[] hurui = new boolean[n + 1];
		gethurui(hurui,n);

		ArrayList<Integer> p = new ArrayList<Integer>();

		for(int i = 0;i <= n;i++){
			if(hurui[i])
				p.add(i);
		}

		boolean[] dp = new boolean[n + 1];

		dp[0] = dp[1] = true;

		for(int i = 2;i <= n;i++){
			boolean f = false;

			int j = 0;
			while(j < p.size() && p.get(j) <= i){
				if(!dp[i - p.get(j)]){
					f = true;
					break;
				}
				j++;
			}
			dp[i] = f;
		}
		if(dp[n])
			System.out.println("Win");
		else
			System.out.println("Lose");
	}
}
0