結果

問題 No.458 異なる素数の和
ユーザー H20H20
提出日時 2021-01-13 10:38:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 584 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,200 KB
最終ジャッジ日時 2024-11-22 02:46:32
合計ジャッジ時間 6,110 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,544 KB
testcase_01 AC 207 ms
75,856 KB
testcase_02 AC 260 ms
75,724 KB
testcase_03 AC 92 ms
75,704 KB
testcase_04 AC 101 ms
75,576 KB
testcase_05 AC 499 ms
75,840 KB
testcase_06 AC 244 ms
76,160 KB
testcase_07 AC 49 ms
62,976 KB
testcase_08 AC 501 ms
76,032 KB
testcase_09 AC 66 ms
75,616 KB
testcase_10 AC 37 ms
52,480 KB
testcase_11 AC 584 ms
76,032 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 36 ms
52,096 KB
testcase_14 AC 35 ms
51,584 KB
testcase_15 AC 35 ms
51,840 KB
testcase_16 AC 77 ms
75,660 KB
testcase_17 AC 41 ms
58,496 KB
testcase_18 AC 39 ms
58,240 KB
testcase_19 AC 36 ms
51,968 KB
testcase_20 AC 41 ms
58,940 KB
testcase_21 AC 35 ms
51,840 KB
testcase_22 AC 35 ms
52,096 KB
testcase_23 AC 40 ms
58,624 KB
testcase_24 AC 40 ms
59,008 KB
testcase_25 AC 36 ms
51,840 KB
testcase_26 AC 39 ms
57,984 KB
testcase_27 AC 234 ms
76,200 KB
testcase_28 AC 573 ms
76,020 KB
testcase_29 AC 58 ms
70,228 KB
testcase_30 AC 166 ms
75,652 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)
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