結果

問題 No.458 異なる素数の和
ユーザー h_nosonh_noson
提出日時 2017-01-26 13:01:09
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 588 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 121,964 KB
最終ジャッジ日時 2024-06-06 00:53:18
合計ジャッジ時間 14,355 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,184 KB
testcase_01 AC 667 ms
85,248 KB
testcase_02 AC 853 ms
91,520 KB
testcase_03 AC 170 ms
77,172 KB
testcase_04 AC 210 ms
77,312 KB
testcase_05 AC 1,941 ms
113,212 KB
testcase_06 AC 793 ms
90,324 KB
testcase_07 AC 46 ms
64,896 KB
testcase_08 AC 1,932 ms
113,024 KB
testcase_09 AC 88 ms
76,032 KB
testcase_10 AC 35 ms
51,584 KB
testcase_11 TLE -
testcase_12 AC 34 ms
52,096 KB
testcase_13 AC 36 ms
52,096 KB
testcase_14 AC 34 ms
51,584 KB
testcase_15 AC 35 ms
52,352 KB
testcase_16 AC 120 ms
76,288 KB
testcase_17 AC 36 ms
52,480 KB
testcase_18 AC 35 ms
52,096 KB
testcase_19 AC 35 ms
52,096 KB
testcase_20 AC 35 ms
52,224 KB
testcase_21 AC 34 ms
52,064 KB
testcase_22 AC 35 ms
52,224 KB
testcase_23 AC 34 ms
51,968 KB
testcase_24 AC 36 ms
51,968 KB
testcase_25 AC 34 ms
51,968 KB
testcase_26 AC 33 ms
52,224 KB
testcase_27 AC 758 ms
89,188 KB
testcase_28 TLE -
testcase_29 AC 68 ms
75,704 KB
testcase_30 AC 462 ms
81,824 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}
prime = [True for i in range(n+1)]
for i in range(2,n+1):
    if not prime[i]: continue
    for j in range(i*i,n+1,i): prime[j] = False
    tmp = {}
    for x in mp:
        if x + i > n: break
        tmp[x+i] = max(mp[x]+1,mp[x+i] if x+i in mp else -1)
    mp.update(tmp)
print(mp[n] if n in mp else -1)
0