結果

問題 No.7 プライムナンバーゲーム
ユーザー jp_stejp_ste
提出日時 2016-02-03 13:00:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 5,000 ms
コード長 698 bytes
コンパイル時間 2,143 ms
コンパイル使用メモリ 74,648 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-10-01 15:40:27
合計ジャッジ時間 5,117 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,132 KB
testcase_01 AC 124 ms
41,460 KB
testcase_02 AC 134 ms
41,084 KB
testcase_03 AC 133 ms
41,100 KB
testcase_04 AC 133 ms
41,036 KB
testcase_05 AC 133 ms
41,356 KB
testcase_06 AC 131 ms
40,448 KB
testcase_07 AC 135 ms
41,304 KB
testcase_08 AC 134 ms
41,448 KB
testcase_09 AC 141 ms
41,400 KB
testcase_10 AC 129 ms
41,320 KB
testcase_11 AC 137 ms
41,164 KB
testcase_12 AC 152 ms
41,320 KB
testcase_13 AC 149 ms
41,280 KB
testcase_14 AC 152 ms
41,588 KB
testcase_15 AC 152 ms
41,660 KB
testcase_16 AC 152 ms
41,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		scan.close();
		
		boolean prime[] = new boolean[N+1];
		for(int i=2; i<=N; i++) {
			prime[i] = true;
		}
		
		for(int i=2; i<Math.sqrt(N); i++){
			if(prime[i]) {
				for(int j=i+i; j<=N; j+=i) {
					prime[j] = false;
				}
			}
		}
		
		boolean dp[] = new boolean[N+1];
		
		for(int i=4; i<=N; i++) {
			for(int j=i; j>=2; j--) {
				if(prime[j]) {	
					if(i-j >= 2 && !dp[i-j]) {
						dp[i] = true;
						break;
					}
				}
			}
		}
		
		if(dp[N]) {
			System.out.println("Win");
		} else {
			System.out.println("Lose");
		}
	}
}
0