結果

問題 No.7 プライムナンバーゲーム
ユーザー uafr_csuafr_cs
提出日時 2015-06-03 14:13:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 5,000 ms
コード長 960 bytes
コンパイル時間 2,208 ms
コンパイル使用メモリ 78,144 KB
実行使用メモリ 42,100 KB
最終ジャッジ日時 2024-10-01 15:33:13
合計ジャッジ時間 5,488 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,284 KB
testcase_01 AC 132 ms
41,512 KB
testcase_02 AC 156 ms
41,364 KB
testcase_03 AC 152 ms
41,884 KB
testcase_04 AC 137 ms
41,628 KB
testcase_05 AC 136 ms
41,436 KB
testcase_06 AC 152 ms
41,764 KB
testcase_07 AC 151 ms
41,556 KB
testcase_08 AC 154 ms
41,472 KB
testcase_09 AC 158 ms
41,832 KB
testcase_10 AC 131 ms
41,296 KB
testcase_11 AC 165 ms
41,436 KB
testcase_12 AC 155 ms
42,000 KB
testcase_13 AC 159 ms
41,856 KB
testcase_14 AC 151 ms
41,108 KB
testcase_15 AC 163 ms
41,864 KB
testcase_16 AC 159 ms
42,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
	
		final int N = sc.nextInt();
		boolean[] is_prime = new boolean[N + 1];
		Arrays.fill(is_prime, true);
		is_prime[0] = is_prime[1] = false;
		
		List<Integer> primes = new LinkedList<Integer>();
		
		for(int i = 2; i <= N; i++){
			if(is_prime[i]){
				primes.add(i);
				
				for(int j = i * 2; j <= N; j += i){
					is_prime[j] = false;
				}
			}
		}
		
		boolean[] DP = new boolean[N + 1];
		DP[0] = DP[1] = true;
		for(int i = 2; i <= N; i++){
			boolean only_win = true;
			
			for(final int prime : primes){
				if(prime > i){ break; }
				
				if(!DP[i - prime]){
					only_win = false;
					break;
				}
			}
			
			DP[i] = !only_win;
		}
		
		//System.out.println(Arrays.toString(DP));
		
		System.out.println(DP[N] ? "Win" : "Lose");
	}
	
}
0