結果

問題 No.458 異なる素数の和
ユーザー takakintakakin
提出日時 2020-03-28 20:26:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 65,460 KB
最終ジャッジ日時 2024-06-10 17:45:23
合計ジャッジ時間 4,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,300 KB
testcase_01 AC 134 ms
64,232 KB
testcase_02 AC 162 ms
65,460 KB
testcase_03 AC 68 ms
64,908 KB
testcase_04 AC 76 ms
63,772 KB
testcase_05 AC 302 ms
65,000 KB
testcase_06 AC 154 ms
64,720 KB
testcase_07 AC 48 ms
61,676 KB
testcase_08 AC 304 ms
65,432 KB
testcase_09 AC 56 ms
63,756 KB
testcase_10 AC 36 ms
52,144 KB
testcase_11 AC 352 ms
64,788 KB
testcase_12 AC 36 ms
53,284 KB
testcase_13 AC 36 ms
53,220 KB
testcase_14 AC 36 ms
52,784 KB
testcase_15 AC 37 ms
52,664 KB
testcase_16 AC 61 ms
64,364 KB
testcase_17 AC 39 ms
59,040 KB
testcase_18 AC 41 ms
58,812 KB
testcase_19 AC 37 ms
53,196 KB
testcase_20 AC 42 ms
59,224 KB
testcase_21 AC 37 ms
53,128 KB
testcase_22 AC 37 ms
52,900 KB
testcase_23 AC 41 ms
59,396 KB
testcase_24 AC 43 ms
59,744 KB
testcase_25 AC 38 ms
52,472 KB
testcase_26 AC 39 ms
59,484 KB
testcase_27 AC 149 ms
65,452 KB
testcase_28 AC 348 ms
64,400 KB
testcase_29 AC 51 ms
63,780 KB
testcase_30 AC 111 ms
64,976 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