結果

問題 No.458 異なる素数の和
ユーザー juris_lazyjuris_lazy
提出日時 2022-08-04 13:36:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,161 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 841 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 258,816 KB
最終ジャッジ日時 2024-09-14 09:56:14
合計ジャッジ時間 9,001 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
67,072 KB
testcase_01 AC 351 ms
77,608 KB
testcase_02 AC 433 ms
79,328 KB
testcase_03 AC 138 ms
76,400 KB
testcase_04 AC 158 ms
76,516 KB
testcase_05 AC 991 ms
258,460 KB
testcase_06 AC 412 ms
78,852 KB
testcase_07 AC 68 ms
69,532 KB
testcase_08 AC 1,002 ms
258,304 KB
testcase_09 AC 93 ms
76,148 KB
testcase_10 AC 39 ms
52,096 KB
testcase_11 AC 1,161 ms
258,436 KB
testcase_12 AC 40 ms
52,272 KB
testcase_13 AC 39 ms
51,968 KB
testcase_14 AC 40 ms
52,224 KB
testcase_15 AC 40 ms
52,096 KB
testcase_16 AC 113 ms
76,136 KB
testcase_17 AC 44 ms
58,880 KB
testcase_18 AC 46 ms
59,136 KB
testcase_19 AC 39 ms
52,096 KB
testcase_20 AC 50 ms
61,696 KB
testcase_21 AC 40 ms
51,840 KB
testcase_22 AC 40 ms
52,096 KB
testcase_23 AC 47 ms
60,288 KB
testcase_24 AC 49 ms
61,568 KB
testcase_25 AC 39 ms
52,608 KB
testcase_26 AC 44 ms
58,624 KB
testcase_27 AC 397 ms
78,792 KB
testcase_28 AC 1,138 ms
258,816 KB
testcase_29 AC 88 ms
76,476 KB
testcase_30 AC 277 ms
77,132 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 table

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

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