結果

問題 No.458 異なる素数の和
ユーザー H20H20
提出日時 2021-01-13 10:36:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 523 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-11-22 02:42:41
合計ジャッジ時間 5,938 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
60,416 KB
testcase_01 AC 226 ms
76,160 KB
testcase_02 AC 265 ms
75,904 KB
testcase_03 AC 104 ms
76,160 KB
testcase_04 AC 115 ms
75,776 KB
testcase_05 AC 510 ms
75,904 KB
testcase_06 AC 257 ms
76,160 KB
testcase_07 AC 56 ms
62,976 KB
testcase_08 AC 513 ms
76,672 KB
testcase_09 AC 79 ms
75,776 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 599 ms
76,032 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 WA -
testcase_14 AC 39 ms
51,712 KB
testcase_15 AC 39 ms
51,840 KB
testcase_16 AC 89 ms
75,776 KB
testcase_17 AC 45 ms
58,624 KB
testcase_18 AC 43 ms
57,984 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 46 ms
58,880 KB
testcase_21 AC 39 ms
51,840 KB
testcase_22 AC 39 ms
51,968 KB
testcase_23 AC 45 ms
58,496 KB
testcase_24 AC 46 ms
59,008 KB
testcase_25 AC 40 ms
51,840 KB
testcase_26 AC 44 ms
57,984 KB
testcase_27 AC 247 ms
76,160 KB
testcase_28 AC 587 ms
76,032 KB
testcase_29 AC 68 ms
70,528 KB
testcase_30 AC 181 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def sieve(n):
    is_prime = [True for _ in range(n+1)]
    is_prime[0] = False

    for i in range(2, n+1):
        if is_prime[i-1]:
            j = 2 * i
            while j <= n:
                is_prime[j-1] = False
                j += i
    table = [ i for i in range(1, n+1) if is_prime[i-1]]
    return is_prime, table

N = int(input())
_,table=sieve(N-1)
DP=[-1]*(N+1)
DP[0]=0
for t in table:
    for i in reversed(range(N)):
        if DP[i]>=0 and i+t<=N:
            DP[i+t] = max(DP[i+t],DP[i]+1)
print(DP[N])
0