結果

問題 No.458 異なる素数の和
ユーザー takakintakakin
提出日時 2020-03-28 20:26:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 348 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 1,368 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 66,008 KB
最終ジャッジ日時 2025-01-02 12:09:09
合計ジャッジ時間 4,234 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,404 KB
testcase_01 AC 130 ms
64,552 KB
testcase_02 AC 175 ms
65,016 KB
testcase_03 AC 71 ms
66,008 KB
testcase_04 AC 74 ms
64,248 KB
testcase_05 AC 308 ms
64,520 KB
testcase_06 AC 156 ms
64,644 KB
testcase_07 AC 47 ms
62,964 KB
testcase_08 AC 297 ms
65,140 KB
testcase_09 AC 55 ms
65,572 KB
testcase_10 AC 36 ms
52,440 KB
testcase_11 AC 348 ms
65,276 KB
testcase_12 AC 36 ms
52,740 KB
testcase_13 AC 36 ms
52,820 KB
testcase_14 AC 34 ms
53,168 KB
testcase_15 AC 34 ms
53,452 KB
testcase_16 AC 59 ms
64,104 KB
testcase_17 AC 40 ms
58,600 KB
testcase_18 AC 41 ms
59,308 KB
testcase_19 AC 38 ms
53,328 KB
testcase_20 AC 41 ms
59,572 KB
testcase_21 AC 37 ms
52,400 KB
testcase_22 AC 34 ms
52,888 KB
testcase_23 AC 40 ms
60,040 KB
testcase_24 AC 39 ms
59,976 KB
testcase_25 AC 35 ms
52,992 KB
testcase_26 AC 39 ms
59,076 KB
testcase_27 AC 165 ms
64,708 KB
testcase_28 AC 339 ms
65,584 KB
testcase_29 AC 50 ms
64,092 KB
testcase_30 AC 106 ms
64,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
def primes(n):
  is_prime=[True]*(n+1)
  is_prime[0]=False
  is_prime[1]=False
  for i in range(2,int(n**0.5)+1):
    if not is_prime[i]:
      continue
    for j in range(i*2,n+1,i):
      is_prime[j]=False
  return [i for i in range(n+1) if is_prime[i]]
P=primes(n)
m=len(P)
DP=[0]*(n+1)
DP[0]=1
for p in P:
  for i in range(n+1)[::-1]:
    if i>=p and DP[i-p]>0:
      DP[i]=max(DP[i],DP[i-p]+1)
print(DP[n]-1)

0