結果

問題 No.458 異なる素数の和
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-13 12:15:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,057 bytes
コンパイル時間 1,989 ms
コンパイル使用メモリ 78,460 KB
実行使用メモリ 233,048 KB
最終ジャッジ日時 2024-09-24 16:54:59
合計ジャッジ時間 9,299 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,240 KB
testcase_01 AC 247 ms
112,488 KB
testcase_02 AC 299 ms
130,176 KB
testcase_03 AC 168 ms
65,948 KB
testcase_04 AC 172 ms
66,412 KB
testcase_05 AC 497 ms
233,048 KB
testcase_06 AC 296 ms
131,992 KB
testcase_07 AC 141 ms
54,256 KB
testcase_08 AC 490 ms
230,972 KB
testcase_09 AC 148 ms
59,092 KB
testcase_10 AC 126 ms
54,392 KB
testcase_11 AC 534 ms
228,616 KB
testcase_12 WA -
testcase_13 AC 126 ms
53,876 KB
testcase_14 AC 125 ms
53,896 KB
testcase_15 WA -
testcase_16 AC 144 ms
58,312 KB
testcase_17 AC 129 ms
54,192 KB
testcase_18 AC 123 ms
54,208 KB
testcase_19 AC 117 ms
52,980 KB
testcase_20 AC 126 ms
54,008 KB
testcase_21 AC 127 ms
54,192 KB
testcase_22 AC 127 ms
54,476 KB
testcase_23 AC 115 ms
52,696 KB
testcase_24 AC 116 ms
52,856 KB
testcase_25 AC 128 ms
54,100 KB
testcase_26 AC 129 ms
53,868 KB
testcase_27 AC 271 ms
113,032 KB
testcase_28 AC 527 ms
229,312 KB
testcase_29 WA -
testcase_30 AC 231 ms
88,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int N = sc.nextInt();
    ArrayList<Integer> prime = new ArrayList<Integer>();
    for(int i = 2; i <= N; i++) {
      boolean flg = true;
      for(int j = 2; j * j <= i; j++) {
        if(i % j == 0) {
          flg = false;
          break;
        }
      }
      if(flg) prime.add(i);
    }
    int num = prime.size();
    int ans = -1;
    if(num != 0) {
      // dp[i][j]はjを異なる素数の和で表す(素数0~素数iまでを用いる)場合の、最大の和の回数を表す
      int[][] dp = new int[num][N + 1];
      dp[0][2] = 1;
      for(int i = 1; i < num; i++) {
        for(int j = 2; j < N + 1; j++) {
          if(j >= prime.get(i)) {
            dp[i][j] = Math.max(dp[i - 1][j], dp[i - 1][j - prime.get(i)] + 1);
          } else {
            dp[i][j] = dp[i - 1][j];
          }
        }
      }
      if(dp[num - 1][N] > 0) ans = dp[num - 1][N];
    }
    System.out.println(ans);
  }
}
0