結果

問題 No.458 異なる素数の和
ユーザー takakintakakin
提出日時 2020-03-28 20:26:41
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 485 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 24,000 KB
最終ジャッジ日時 2025-01-02 12:08:57
合計ジャッジ時間 32,736 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
16,932 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 1,118 ms
17,060 KB
testcase_04 AC 1,429 ms
20,480 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 56 ms
17,060 KB
testcase_08 TLE -
testcase_09 AC 325 ms
17,060 KB
testcase_10 AC 29 ms
20,608 KB
testcase_11 TLE -
testcase_12 AC 30 ms
16,928 KB
testcase_13 AC 27 ms
17,056 KB
testcase_14 AC 27 ms
20,608 KB
testcase_15 AC 26 ms
16,928 KB
testcase_16 AC 577 ms
10,368 KB
testcase_17 AC 27 ms
10,112 KB
testcase_18 AC 29 ms
10,240 KB
testcase_19 AC 27 ms
10,112 KB
testcase_20 AC 30 ms
10,368 KB
testcase_21 AC 29 ms
10,112 KB
testcase_22 AC 27 ms
10,112 KB
testcase_23 AC 29 ms
10,240 KB
testcase_24 AC 28 ms
10,112 KB
testcase_25 AC 28 ms
10,112 KB
testcase_26 AC 28 ms
10,112 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 163 ms
10,112 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

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