結果

問題 No.458 異なる素数の和
ユーザー brthyyjpbrthyyjp
提出日時 2021-12-18 16:53:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 943 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 76,040 KB
最終ジャッジ日時 2024-09-15 13:50:15
合計ジャッジ時間 7,471 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,544 KB
testcase_01 AC 311 ms
75,520 KB
testcase_02 AC 385 ms
75,648 KB
testcase_03 AC 114 ms
75,904 KB
testcase_04 AC 130 ms
75,648 KB
testcase_05 AC 780 ms
75,648 KB
testcase_06 AC 360 ms
75,520 KB
testcase_07 AC 50 ms
62,336 KB
testcase_08 AC 809 ms
76,040 KB
testcase_09 AC 74 ms
75,136 KB
testcase_10 AC 38 ms
52,352 KB
testcase_11 AC 923 ms
75,520 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 39 ms
51,840 KB
testcase_14 AC 40 ms
51,584 KB
testcase_15 AC 39 ms
52,352 KB
testcase_16 AC 89 ms
75,776 KB
testcase_17 AC 41 ms
57,216 KB
testcase_18 AC 41 ms
57,856 KB
testcase_19 AC 37 ms
52,096 KB
testcase_20 AC 44 ms
58,368 KB
testcase_21 AC 38 ms
52,224 KB
testcase_22 AC 39 ms
52,224 KB
testcase_23 AC 47 ms
57,984 KB
testcase_24 AC 43 ms
58,368 KB
testcase_25 AC 38 ms
52,352 KB
testcase_26 AC 42 ms
57,600 KB
testcase_27 AC 348 ms
75,776 KB
testcase_28 AC 943 ms
75,936 KB
testcase_29 AC 61 ms
68,224 KB
testcase_30 AC 242 ms
75,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def sieve(n):
    ass = []
    is_prime = [True]*(n+1)
    is_prime[0] = False
    is_prime[1] = False

    for i in range(2, int(math.sqrt(n))+1):
        if not is_prime[i]:
            continue
        for j in range(i*2, n+1, i):
            is_prime[j] = False
    for i in range(n+1):
        if is_prime[i]:
            ass.append(i)
    return(ass)

def main():

    n = int(input())
    P = sieve(n)
    dp = [-1]*(n+1)
    dp[0] = 0
    for p in P:
        for i in reversed(range(n+1)):
            if dp[i] == -1:
                continue
            if i+p <= n:
                dp[i+p] = max(dp[i+p], dp[i]+1)

    print(dp[n])

if __name__ == '__main__':
    main()
0