結果

問題 No.458 異なる素数の和
ユーザー asumo0729asumo0729
提出日時 2020-12-16 11:15:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 513 ms / 2,000 ms
コード長 859 bytes
コンパイル時間 1,825 ms
コンパイル使用メモリ 81,348 KB
実行使用メモリ 66,560 KB
最終ジャッジ日時 2024-09-20 04:45:15
合計ジャッジ時間 6,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
62,896 KB
testcase_01 AC 315 ms
66,304 KB
testcase_02 AC 341 ms
66,176 KB
testcase_03 AC 178 ms
66,048 KB
testcase_04 AC 196 ms
65,920 KB
testcase_05 AC 470 ms
66,560 KB
testcase_06 AC 344 ms
65,920 KB
testcase_07 AC 69 ms
63,104 KB
testcase_08 AC 474 ms
66,304 KB
testcase_09 AC 129 ms
65,004 KB
testcase_10 AC 38 ms
57,472 KB
testcase_11 AC 509 ms
66,432 KB
testcase_12 AC 43 ms
59,392 KB
testcase_13 AC 42 ms
59,392 KB
testcase_14 AC 43 ms
59,776 KB
testcase_15 AC 40 ms
59,520 KB
testcase_16 AC 149 ms
66,304 KB
testcase_17 AC 50 ms
62,336 KB
testcase_18 AC 51 ms
63,104 KB
testcase_19 AC 44 ms
59,264 KB
testcase_20 AC 52 ms
62,976 KB
testcase_21 AC 42 ms
59,520 KB
testcase_22 AC 44 ms
59,520 KB
testcase_23 AC 53 ms
62,956 KB
testcase_24 AC 50 ms
62,976 KB
testcase_25 AC 49 ms
62,080 KB
testcase_26 AC 48 ms
62,208 KB
testcase_27 AC 327 ms
66,176 KB
testcase_28 AC 513 ms
66,304 KB
testcase_29 AC 106 ms
65,280 KB
testcase_30 AC 277 ms
66,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
stdin=sys.stdin

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
yp=lambda:print('Yes')
np=lambda:print('No')

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]]

n=ip()
sosuu=primes(n)
dp=[0 for _ in range(20001)]
for i in range(len(sosuu)):
    for j in range(20000,-1,-1):
        if j==0:
            dp[j+sosuu[i]]=max(dp[j+sosuu[i]],1)
        else:
            if 0<=j-sosuu[i] and dp[j-sosuu[i]]!=0:
                dp[j]=max(dp[j],dp[j-sosuu[i]]+1)

if dp[n]==0:
    print(-1)
else:
    print(dp[n])
0