結果

問題 No.7 プライムナンバーゲーム
ユーザー rn4rurn4ru
提出日時 2016-04-13 01:19:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 903 bytes
コンパイル時間 2,120 ms
コンパイル使用メモリ 78,304 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-10-01 15:42:42
合計ジャッジ時間 5,294 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,228 KB
testcase_01 AC 135 ms
41,644 KB
testcase_02 AC 157 ms
41,488 KB
testcase_03 AC 141 ms
40,636 KB
testcase_04 AC 134 ms
41,420 KB
testcase_05 AC 139 ms
41,344 KB
testcase_06 AC 136 ms
41,460 KB
testcase_07 AC 145 ms
41,276 KB
testcase_08 AC 140 ms
40,584 KB
testcase_09 AC 148 ms
41,392 KB
testcase_10 AC 125 ms
41,208 KB
testcase_11 AC 134 ms
41,512 KB
testcase_12 AC 143 ms
40,616 KB
testcase_13 AC 153 ms
41,228 KB
testcase_14 AC 150 ms
41,144 KB
testcase_15 AC 151 ms
41,388 KB
testcase_16 AC 152 ms
41,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {

	static List<Integer> sleeve = new ArrayList<>();

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		int N = scanner.nextInt();

		sleeve(N);
		System.out.println(f(N) ? "Win" : "Lose");
	}

	private static void sleeve(int n) {
		boolean s[] = new boolean[n + 1];
		for (int i = 2; i <= n; i++) {
			if (s[i])
				continue;

			for (int j = i * 2; j <= n; j += i) {
				s[j] = true;
			}
		}
		for (int i = 2; i <= n; i++) {
			if (!s[i])
				sleeve.add(i);
		}
	}

	private static boolean f(int n) {
		boolean[] win = new boolean[n + 1];
		for (int i = 0; i <= n; i++) {
			for (int j = 0; j < sleeve.size(); j++) {
				if (i - sleeve.get(j) < 2)
					break;
				if (!win[i - sleeve.get(j)]) {
					win[i] = true;
					break;
				}
			}
		}

		return win[n];
	}

}
0