結果

問題 No.458 異なる素数の和
ユーザー h_nosonh_noson
提出日時 2017-01-26 12:57:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 487 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 119,668 KB
最終ジャッジ日時 2024-06-06 00:51:49
合計ジャッジ時間 14,840 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,576 KB
testcase_01 AC 663 ms
85,516 KB
testcase_02 AC 875 ms
91,408 KB
testcase_03 AC 172 ms
77,132 KB
testcase_04 AC 209 ms
77,496 KB
testcase_05 AC 1,989 ms
114,012 KB
testcase_06 AC 812 ms
89,608 KB
testcase_07 AC 46 ms
66,444 KB
testcase_08 TLE -
testcase_09 AC 86 ms
75,796 KB
testcase_10 AC 35 ms
52,728 KB
testcase_11 TLE -
testcase_12 AC 36 ms
53,008 KB
testcase_13 AC 35 ms
52,244 KB
testcase_14 AC 35 ms
53,060 KB
testcase_15 AC 36 ms
52,084 KB
testcase_16 AC 129 ms
76,312 KB
testcase_17 AC 36 ms
52,396 KB
testcase_18 AC 35 ms
52,772 KB
testcase_19 AC 34 ms
52,132 KB
testcase_20 AC 36 ms
54,128 KB
testcase_21 AC 34 ms
52,348 KB
testcase_22 AC 35 ms
53,072 KB
testcase_23 AC 36 ms
53,220 KB
testcase_24 AC 34 ms
52,856 KB
testcase_25 AC 35 ms
52,924 KB
testcase_26 AC 35 ms
52,000 KB
testcase_27 AC 770 ms
88,460 KB
testcase_28 TLE -
testcase_29 AC 70 ms
76,028 KB
testcase_30 AC 463 ms
81,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def primes(n):
    is_p = [True for i in range(n+1)]
    i = 2
    while i * i <= n:
        if is_p[i]:
            for j in range(i*i,n+1,i):
                is_p[j] = False
        i += 1
    return [i for i in range(2,n+1) if is_p[i]]

n = int(input())
p = primes(n)
mp = {0:0}
for i in range(len(p)):
    tmp = {}
    for x in mp:
        if x + p[i] > n: break
        tmp[x+p[i]] = max(mp[x]+1,mp[x+p[i]] if x+p[i] in mp else -1)
    mp.update(tmp)
print(mp[n] if n in mp else -1)
0