結果

問題 No.7 プライムナンバーゲーム
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-03 07:34:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 1,589 bytes
コンパイル時間 3,370 ms
コンパイル使用メモリ 79,052 KB
実行使用メモリ 41,864 KB
最終ジャッジ日時 2024-10-01 15:31:16
合計ジャッジ時間 6,299 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,360 KB
testcase_01 AC 123 ms
41,152 KB
testcase_02 AC 132 ms
41,604 KB
testcase_03 AC 128 ms
41,020 KB
testcase_04 AC 119 ms
41,164 KB
testcase_05 AC 120 ms
40,368 KB
testcase_06 AC 129 ms
40,900 KB
testcase_07 AC 138 ms
41,588 KB
testcase_08 AC 132 ms
41,612 KB
testcase_09 AC 132 ms
41,268 KB
testcase_10 AC 121 ms
41,864 KB
testcase_11 AC 131 ms
41,132 KB
testcase_12 AC 140 ms
41,668 KB
testcase_13 AC 132 ms
41,224 KB
testcase_14 AC 139 ms
41,740 KB
testcase_15 AC 136 ms
41,860 KB
testcase_16 AC 131 ms
41,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.7 プライムナンバーゲーム

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No7 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int n = sc.nextInt();
        int[] primes = sieveOfEratosthenes(n+1);
        boolean[] dp = new boolean[n+1];
        dp[0] = dp[1] = true;
        for (int i=2; i<=n; i++) {
            for (int j=0; j<primes.length; j++) {
                if (i < primes[j]) break;
                if (!dp[i-primes[j]]) {
                    dp[i] = true;
                    break;
                }
            }
        }
        out.println(dp[n]?"Win":"Lose");
    }

    static int[] sieveOfEratosthenes(int n) {
        if (n < 2) return null;
        boolean[] isPrime = new boolean[n];
        fill(isPrime,true);
        int[] ret = new int[n];
        int ptr = 0;
        isPrime[0] = isPrime[1] = false;
        for (int i=2; i<n; i++) {
            if (isPrime[i]) {
                ret[ptr++] = i;
                for (int j=i+i; j<n; j+=i) isPrime[j] = false;
            }
        }
        return Arrays.copyOfRange(ret,0,ptr);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0