結果

問題 No.458 異なる素数の和
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-13 12:10:47
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,006 bytes
コンパイル時間 2,001 ms
コンパイル使用メモリ 78,184 KB
実行使用メモリ 232,556 KB
最終ジャッジ日時 2024-09-24 16:54:41
合計ジャッジ時間 9,303 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,944 KB
testcase_01 AC 252 ms
113,352 KB
testcase_02 AC 290 ms
129,836 KB
testcase_03 AC 154 ms
65,716 KB
testcase_04 AC 165 ms
66,568 KB
testcase_05 AC 486 ms
232,556 KB
testcase_06 AC 296 ms
131,728 KB
testcase_07 AC 134 ms
54,024 KB
testcase_08 AC 506 ms
231,084 KB
testcase_09 AC 151 ms
58,644 KB
testcase_10 RE -
testcase_11 AC 557 ms
228,804 KB
testcase_12 WA -
testcase_13 AC 128 ms
53,888 KB
testcase_14 AC 126 ms
53,904 KB
testcase_15 WA -
testcase_16 AC 152 ms
58,864 KB
testcase_17 AC 130 ms
53,776 KB
testcase_18 AC 127 ms
54,108 KB
testcase_19 AC 126 ms
54,108 KB
testcase_20 AC 125 ms
53,896 KB
testcase_21 AC 125 ms
54,304 KB
testcase_22 AC 127 ms
54,260 KB
testcase_23 AC 127 ms
54,244 KB
testcase_24 AC 128 ms
53,828 KB
testcase_25 AC 127 ms
54,280 KB
testcase_26 AC 131 ms
54,012 KB
testcase_27 AC 277 ms
113,256 KB
testcase_28 AC 537 ms
228,900 KB
testcase_29 WA -
testcase_30 AC 236 ms
88,512 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();
    // 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];
        }
      }
    }
    int ans = -1;
    if(dp[num - 1][N] > 0) ans = dp[num - 1][N];
    System.out.println(ans);
  }
}
0