結果

問題 No.7 プライムナンバーゲーム
ユーザー spaciaspacia
提出日時 2016-01-02 08:38:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 87 ms / 5,000 ms
コード長 1,034 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 77,180 KB
実行使用メモリ 38,292 KB
最終ジャッジ日時 2024-10-01 15:39:38
合計ジャッジ時間 3,826 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,968 KB
testcase_01 AC 50 ms
36,876 KB
testcase_02 AC 87 ms
38,020 KB
testcase_03 AC 61 ms
37,368 KB
testcase_04 AC 51 ms
36,948 KB
testcase_05 AC 54 ms
36,728 KB
testcase_06 AC 75 ms
38,096 KB
testcase_07 AC 69 ms
37,992 KB
testcase_08 AC 72 ms
37,520 KB
testcase_09 AC 81 ms
38,064 KB
testcase_10 AC 48 ms
36,632 KB
testcase_11 AC 71 ms
37,784 KB
testcase_12 AC 81 ms
38,292 KB
testcase_13 AC 81 ms
38,072 KB
testcase_14 AC 85 ms
38,140 KB
testcase_15 AC 85 ms
37,860 KB
testcase_16 AC 83 ms
38,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main7 {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static boolean[] sieve (int n) {
		boolean[] ret = new boolean[n + 1];
		
		Arrays.fill(ret , true);
		ret[1] = false;
		for (int i = 4; i <= n; i += 2) ret[i] = false;
		for (int i = 3; i * i <= n; i += 2) {
			for (int j = 3; i * j <= n; j += 2) {
				ret[i * j] = false;
			}
		}
		return ret;
	}
	
	public static boolean solve (int n , boolean[] isPrime , boolean[] res) {
		for (int i = 2; i < n; i++) {
			if (!isPrime[i]) continue;
			if (!res[n - i] && n - i != 1) return true;
		}
		return false;
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		boolean[] isPrime = sieve(n);
		boolean[] res = new boolean[n + 1];
		
		res[2] = false;
		for (int i = 3; i <= n; i++) {
			res[i] = solve(i , isPrime , res);
		}
		
		out(res[n] ? "Win" : "Lose");
	}
}
0