結果

問題 No.458 異なる素数の和
ユーザー titiatitia
提出日時 2023-08-30 04:23:48
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 759 bytes
コンパイル時間 666 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 228,992 KB
最終ジャッジ日時 2024-06-10 03:40:29
合計ジャッジ時間 6,102 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
78,976 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 961 ms
114,560 KB
testcase_04 AC 906 ms
119,920 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 114 ms
82,524 KB
testcase_08 RE -
testcase_09 AC 242 ms
96,608 KB
testcase_10 WA -
testcase_11 RE -
testcase_12 WA -
testcase_13 AC 37 ms
52,224 KB
testcase_14 AC 36 ms
52,480 KB
testcase_15 WA -
testcase_16 AC 412 ms
104,320 KB
testcase_17 AC 38 ms
53,248 KB
testcase_18 AC 38 ms
52,992 KB
testcase_19 AC 42 ms
52,736 KB
testcase_20 AC 44 ms
59,648 KB
testcase_21 AC 36 ms
52,608 KB
testcase_22 WA -
testcase_23 AC 38 ms
53,504 KB
testcase_24 AC 42 ms
59,008 KB
testcase_25 AC 38 ms
53,120 KB
testcase_26 AC 39 ms
52,864 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())


x=N
import math 
L=math.floor(math.sqrt(x)) # 平方根を求める

Primelist=[i for i in range(x+1)]
Primelist[1]=0 # 1は素数でないので0にする.
 
for i in Primelist:
    if i>L:
        break
    if i==0:
        continue
    for j in range(2*i,x+1,i):
        Primelist[j]=0

Primes=[Primelist[j] for j in range(x+1) if Primelist[j]!=0]
Primes.reverse()

DP=[[-1]*1000 for i in range(N+1)]


def calc(N,i):
    if DP[N][i]!=-1:
        return DP[N][i]

    if N==0:
        return 0
    if i>=len(Primes) or Primes[i]>N:
        return -1<<60
    
    ANS=0
    for j in range(i,len(Primes)):
        if N-Primes[j]>=0:
            ANS=max(ANS,calc(N-Primes[j],j+1)+1)

    DP[N][i]=ANS
    return ANS

print(calc(N,0))

    


0