結果

問題 No.458 異なる素数の和
ユーザー ntudantuda
提出日時 2024-01-02 17:50:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,249 ms / 2,000 ms
コード長 633 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 152,652 KB
最終ジャッジ日時 2024-09-27 17:50:07
合計ジャッジ時間 9,337 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
61,896 KB
testcase_01 AC 383 ms
77,544 KB
testcase_02 AC 490 ms
78,124 KB
testcase_03 AC 132 ms
76,160 KB
testcase_04 AC 152 ms
76,188 KB
testcase_05 AC 1,061 ms
145,836 KB
testcase_06 AC 470 ms
78,072 KB
testcase_07 AC 53 ms
65,692 KB
testcase_08 AC 1,062 ms
145,656 KB
testcase_09 AC 83 ms
75,704 KB
testcase_10 AC 39 ms
53,040 KB
testcase_11 AC 1,249 ms
150,672 KB
testcase_12 AC 38 ms
53,080 KB
testcase_13 AC 38 ms
54,148 KB
testcase_14 AC 39 ms
53,752 KB
testcase_15 AC 39 ms
53,060 KB
testcase_16 AC 105 ms
75,956 KB
testcase_17 AC 39 ms
54,112 KB
testcase_18 AC 38 ms
53,324 KB
testcase_19 AC 39 ms
53,140 KB
testcase_20 AC 43 ms
61,052 KB
testcase_21 AC 38 ms
52,528 KB
testcase_22 AC 37 ms
52,196 KB
testcase_23 AC 41 ms
59,056 KB
testcase_24 AC 44 ms
59,488 KB
testcase_25 AC 38 ms
53,484 KB
testcase_26 AC 39 ms
53,328 KB
testcase_27 AC 450 ms
78,088 KB
testcase_28 AC 1,234 ms
152,652 KB
testcase_29 AC 67 ms
74,084 KB
testcase_30 AC 292 ms
77,052 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)
Q = {0}
for p in PL:
    for q in sorted(list(Q),reverse = True):
        if p + q > N:
            continue
        X[p + q] = max(X[p + q], X[q] + 1)
        Q.add(p + q)

if X[N] > 0:
    print(X[N])
else:
    print(-1)
0