結果

問題 No.7 プライムナンバーゲーム
ユーザー tentententen
提出日時 2020-11-16 18:28:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 5,000 ms
コード長 1,034 bytes
コンパイル時間 2,507 ms
コンパイル使用メモリ 75,880 KB
実行使用メモリ 42,028 KB
最終ジャッジ日時 2024-10-01 16:40:01
合計ジャッジ時間 5,735 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,336 KB
testcase_01 AC 114 ms
41,292 KB
testcase_02 AC 157 ms
41,676 KB
testcase_03 AC 147 ms
41,780 KB
testcase_04 AC 133 ms
41,072 KB
testcase_05 AC 135 ms
41,552 KB
testcase_06 AC 153 ms
41,736 KB
testcase_07 AC 148 ms
41,444 KB
testcase_08 AC 146 ms
41,592 KB
testcase_09 AC 154 ms
41,416 KB
testcase_10 AC 133 ms
41,296 KB
testcase_11 AC 168 ms
41,188 KB
testcase_12 AC 154 ms
41,596 KB
testcase_13 AC 154 ms
41,852 KB
testcase_14 AC 160 ms
41,896 KB
testcase_15 AC 158 ms
42,028 KB
testcase_16 AC 151 ms
41,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        boolean[] isNotPrime = new boolean[n + 1];
        ArrayList<Integer> primes = new ArrayList<>();
        for (int i = 2; i <= n; i++) {
            if (!isNotPrime[i]) {
                primes.add(i);
                for (int j = 2; j * i <= n; j++) {
                    isNotPrime[i * j] = true;
                }
            }
        }
        boolean[] isWin = new boolean[n + 1];
        isWin[0] = true;
        isWin[1] = true;
        for (int i = 2; i <= n; i++) {
            for (int x : primes) {
                if (x > i) {
                    break;
                }
                if (!isWin[i - x]) {
                    isWin[i] = true;
                    break;
                }
            }
        }
        if (isWin[n]) {
            System.out.println("Win");
        } else {
            System.out.println("Lose");
        }
    }
}
0