結果

問題 No.458 異なる素数の和
ユーザー _matumo__matumo_
提出日時 2019-05-13 14:54:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 651 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 71,296 KB
最終ジャッジ日時 2024-07-07 15:45:47
合計ジャッジ時間 5,850 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,008 KB
testcase_01 AC 212 ms
66,304 KB
testcase_02 AC 266 ms
67,328 KB
testcase_03 AC 84 ms
64,768 KB
testcase_04 AC 96 ms
64,512 KB
testcase_05 AC 520 ms
70,016 KB
testcase_06 AC 256 ms
66,944 KB
testcase_07 AC 47 ms
61,184 KB
testcase_08 AC 528 ms
70,016 KB
testcase_09 AC 57 ms
63,104 KB
testcase_10 AC 36 ms
51,840 KB
testcase_11 AC 617 ms
71,296 KB
testcase_12 AC 37 ms
52,352 KB
testcase_13 AC 36 ms
52,076 KB
testcase_14 AC 36 ms
51,968 KB
testcase_15 AC 37 ms
51,712 KB
testcase_16 AC 68 ms
63,744 KB
testcase_17 AC 38 ms
57,600 KB
testcase_18 AC 37 ms
57,600 KB
testcase_19 AC 36 ms
51,968 KB
testcase_20 AC 41 ms
58,880 KB
testcase_21 AC 37 ms
51,968 KB
testcase_22 AC 37 ms
51,968 KB
testcase_23 AC 40 ms
58,624 KB
testcase_24 AC 40 ms
58,240 KB
testcase_25 AC 37 ms
51,840 KB
testcase_26 AC 39 ms
57,088 KB
testcase_27 AC 241 ms
66,688 KB
testcase_28 AC 651 ms
70,400 KB
testcase_29 AC 52 ms
61,824 KB
testcase_30 AC 162 ms
65,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prmCn(N):
    if N < 2:
        return -1
    if N < 4:
        return 1
    if N < 5:
        return -1
    pa = [i for i in range(5, N+1, 2) if i % 3]
    pr = [2, 3]
    rN = int(N**0.5)
    while True:
        m = pa[0]
        if m >= rN:
            break
        pr += [m]
        pa = [n for n in pa[1:] if n % m]
    pr += pa
    pa = [1]+[0]*N
    for r in pr:
        for j in range(N, -1, -1):
            if pa[j] > 0 and j+r <= N:
                pa[j+r] = max(pa[j+r], pa[j]+1)
    return pa[N]-1


N = int(input())
print(prmCn(N))
0