結果

問題 No.7 プライムナンバーゲーム
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-14 23:22:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 195 ms / 5,000 ms
コード長 858 bytes
コンパイル時間 2,494 ms
コンパイル使用メモリ 78,140 KB
実行使用メモリ 42,052 KB
最終ジャッジ日時 2024-10-01 16:24:39
合計ジャッジ時間 5,934 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,876 KB
testcase_01 AC 129 ms
41,472 KB
testcase_02 AC 195 ms
41,608 KB
testcase_03 AC 141 ms
41,640 KB
testcase_04 AC 133 ms
40,300 KB
testcase_05 AC 142 ms
41,600 KB
testcase_06 AC 154 ms
41,620 KB
testcase_07 AC 151 ms
41,708 KB
testcase_08 AC 144 ms
41,624 KB
testcase_09 AC 162 ms
41,384 KB
testcase_10 AC 130 ms
41,776 KB
testcase_11 AC 142 ms
40,320 KB
testcase_12 AC 177 ms
41,668 KB
testcase_13 AC 178 ms
41,776 KB
testcase_14 AC 190 ms
42,052 KB
testcase_15 AC 186 ms
41,376 KB
testcase_16 AC 183 ms
41,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    int[] dp = new int[n + 1];
    ArrayList<Integer> prime = new ArrayList<Integer>();
    boolean[] is_prime = new boolean[n - 1];
    for(int i = 0; i <= n - 2; i++) is_prime[i] = true;
    is_prime[0] = false;
    if(n > 2) is_prime[1] = false;
    for(int i = 2; i <= n - 2; i++) {
      if(is_prime[i]) {
        prime.add(i);
        for(int j = 2 * i; j <= n - 2; j += i) is_prime[j] = false;
      }
    }
    for(int i = 2; i < n + 1; i++) {
      for(int j = 0; j < prime.size(); j++) {
        int p = prime.get(j);
        if(p < i - 1) {
          if(dp[i - p] == 0) dp[i] = 1;
        }
      }
    }
    String ans = "Win";
    if(dp[n] == 0) ans = "Lose";
    System.out.println(ans);
  }
}
0