結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,264 KB
testcase_01 AC 333 ms
70,668 KB
testcase_02 AC 416 ms
72,756 KB
testcase_03 AC 112 ms
66,916 KB
testcase_04 AC 131 ms
68,428 KB
testcase_05 AC 882 ms
78,560 KB
testcase_06 AC 394 ms
72,008 KB
testcase_07 AC 52 ms
63,288 KB
testcase_08 AC 879 ms
78,948 KB
testcase_09 AC 71 ms
65,564 KB
testcase_10 AC 38 ms
52,060 KB
testcase_11 AC 1,015 ms
78,768 KB
testcase_12 AC 38 ms
52,756 KB
testcase_13 AC 38 ms
53,172 KB
testcase_14 AC 39 ms
52,696 KB
testcase_15 AC 39 ms
53,048 KB
testcase_16 AC 89 ms
66,988 KB
testcase_17 AC 41 ms
53,676 KB
testcase_18 AC 39 ms
53,420 KB
testcase_19 AC 39 ms
53,808 KB
testcase_20 AC 44 ms
58,776 KB
testcase_21 AC 39 ms
52,812 KB
testcase_22 AC 39 ms
52,340 KB
testcase_23 AC 44 ms
59,700 KB
testcase_24 AC 44 ms
59,636 KB
testcase_25 AC 40 ms
53,000 KB
testcase_26 AC 39 ms
53,788 KB
testcase_27 AC 374 ms
71,484 KB
testcase_28 AC 994 ms
78,832 KB
testcase_29 AC 62 ms
64,964 KB
testcase_30 AC 250 ms
70,132 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())
if N == 1:
    print(-1)
    exit()
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