結果

問題 No.458 異なる素数の和
ユーザー ntudantuda
提出日時 2024-01-02 17:40:36
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 719 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 78,952 KB
最終ジャッジ日時 2024-09-27 17:49:42
合計ジャッジ時間 8,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
61,312 KB
testcase_01 AC 341 ms
70,136 KB
testcase_02 AC 410 ms
72,364 KB
testcase_03 AC 111 ms
66,124 KB
testcase_04 AC 130 ms
67,992 KB
testcase_05 AC 875 ms
78,600 KB
testcase_06 AC 390 ms
72,940 KB
testcase_07 AC 51 ms
63,496 KB
testcase_08 AC 874 ms
78,556 KB
testcase_09 AC 72 ms
66,732 KB
testcase_10 RE -
testcase_11 AC 1,020 ms
78,952 KB
testcase_12 AC 43 ms
53,608 KB
testcase_13 AC 39 ms
53,688 KB
testcase_14 AC 38 ms
52,536 KB
testcase_15 AC 38 ms
53,616 KB
testcase_16 AC 87 ms
67,120 KB
testcase_17 AC 39 ms
53,688 KB
testcase_18 AC 40 ms
52,752 KB
testcase_19 AC 39 ms
52,888 KB
testcase_20 AC 45 ms
59,964 KB
testcase_21 AC 38 ms
52,388 KB
testcase_22 AC 38 ms
53,088 KB
testcase_23 AC 44 ms
59,696 KB
testcase_24 AC 43 ms
59,240 KB
testcase_25 AC 39 ms
52,676 KB
testcase_26 AC 39 ms
53,528 KB
testcase_27 AC 370 ms
71,368 KB
testcase_28 AC 995 ms
78,864 KB
testcase_29 AC 62 ms
64,984 KB
testcase_30 AC 249 ms
69,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def seachPrimeNum(N):
    max = int(N ** 0.5)
    seachList = [i for i in range(2, N + 1)]
    primeNum = []
    while seachList[0] <= max:
        primeNum.append(seachList[0])
        tmp = seachList[0]
        seachList = [i for i in seachList if i % tmp != 0]
    primeNum.extend(seachList)
    return primeNum


N = int(input())
PL = seachPrimeNum(N)
X = [0] * (N+1)
dic = {}
dic[0] = 0
for p in PL:
    dic2 = {}
    for k, v in dic.items():
        if k + p > N:
            continue
        if k + p in dic:
            if dic[k + p] < dic[k] + 1:
                dic2[k + p] = dic[k] + 1
        else:
            dic2[k + p] = dic[k] + 1
    dic.update(dic2)
if N in dic:
    print(dic[N])
else:
    print(-1)
0