結果

問題 No.458 異なる素数の和
ユーザー juris_lazyjuris_lazy
提出日時 2022-08-04 13:31:19
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 696 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 623,028 KB
最終ジャッジ日時 2024-09-14 09:50:19
合計ジャッジ時間 12,048 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
68,224 KB
testcase_01 AC 558 ms
258,740 KB
testcase_02 AC 698 ms
304,436 KB
testcase_03 AC 183 ms
100,948 KB
testcase_04 AC 222 ms
122,240 KB
testcase_05 MLE -
testcase_06 AC 683 ms
304,840 KB
testcase_07 AC 66 ms
70,528 KB
testcase_08 MLE -
testcase_09 AC 104 ms
82,944 KB
testcase_10 AC 37 ms
52,480 KB
testcase_11 MLE -
testcase_12 AC 39 ms
51,712 KB
testcase_13 AC 37 ms
51,968 KB
testcase_14 AC 41 ms
52,096 KB
testcase_15 AC 44 ms
52,096 KB
testcase_16 AC 139 ms
99,840 KB
testcase_17 AC 44 ms
58,880 KB
testcase_18 AC 45 ms
59,904 KB
testcase_19 AC 38 ms
51,968 KB
testcase_20 AC 50 ms
61,952 KB
testcase_21 AC 39 ms
52,468 KB
testcase_22 AC 40 ms
52,608 KB
testcase_23 AC 48 ms
60,288 KB
testcase_24 AC 50 ms
61,824 KB
testcase_25 AC 39 ms
52,480 KB
testcase_26 AC 44 ms
58,624 KB
testcase_27 AC 644 ms
305,408 KB
testcase_28 MLE -
testcase_29 AC 100 ms
79,332 KB
testcase_30 AC 435 ms
213,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def sieve(n):
    is_prime = [True for _ in range(n+1)]
    is_prime[0] = False

    for i in range(2, n+1):
        if is_prime[i-1]:
            j = 2 * i
            while j <= n:
                is_prime[j-1] = False
                j += i
    table = [ i for i in range(1, n+1) if is_prime[i-1]]
    return is_prime, table

N = int(input())
_, table = sieve(N)

dp = [[-float('inf')] * (N + 1) for _ in range(len(table) + 1)]
dp[0][0] = 0
for i in range(len(table)):
  a  = table[i]
  for j in range(N + 1):
    dp[i + 1][j] = max(dp[i + 1][j], dp[i][j])
    if j + a <= N:
      dp[i + 1][j + a] = max(dp[i + 1][j + a], dp[i][j] + 1)
if dp[-1][-1] < 0:
  print(-1)
else:
  print(dp[-1][-1])
0