結果

問題 No.7 プライムナンバーゲーム
ユーザー tentententen
提出日時 2020-11-16 18:27:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,035 bytes
コンパイル時間 2,561 ms
コンパイル使用メモリ 75,968 KB
実行使用メモリ 54,520 KB
最終ジャッジ日時 2024-07-23 01:40:40
合計ジャッジ時間 5,811 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,976 KB
testcase_01 WA -
testcase_02 AC 162 ms
54,204 KB
testcase_03 AC 149 ms
54,016 KB
testcase_04 AC 136 ms
54,140 KB
testcase_05 WA -
testcase_06 AC 152 ms
54,144 KB
testcase_07 AC 147 ms
54,000 KB
testcase_08 AC 150 ms
54,376 KB
testcase_09 WA -
testcase_10 AC 131 ms
54,272 KB
testcase_11 AC 161 ms
54,520 KB
testcase_12 AC 139 ms
53,616 KB
testcase_13 AC 156 ms
54,184 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 156 ms
54,480 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("Loose");
        }
    }
}
0