結果

問題 No.458 異なる素数の和
ユーザー phtmscgphtmscg
提出日時 2019-05-13 19:12:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 602 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 81,888 KB
実行使用メモリ 63,872 KB
最終ジャッジ日時 2024-07-08 00:40:41
合計ジャッジ時間 5,371 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,904 KB
testcase_01 AC 212 ms
62,976 KB
testcase_02 AC 261 ms
63,488 KB
testcase_03 AC 88 ms
62,720 KB
testcase_04 AC 94 ms
62,848 KB
testcase_05 AC 514 ms
63,872 KB
testcase_06 AC 246 ms
63,104 KB
testcase_07 AC 48 ms
61,184 KB
testcase_08 AC 518 ms
63,360 KB
testcase_09 AC 61 ms
62,848 KB
testcase_10 AC 36 ms
51,712 KB
testcase_11 AC 602 ms
63,872 KB
testcase_12 AC 35 ms
51,456 KB
testcase_13 AC 34 ms
51,840 KB
testcase_14 AC 34 ms
51,840 KB
testcase_15 AC 34 ms
51,840 KB
testcase_16 AC 70 ms
62,592 KB
testcase_17 AC 39 ms
57,472 KB
testcase_18 AC 40 ms
57,472 KB
testcase_19 AC 34 ms
51,840 KB
testcase_20 AC 39 ms
58,112 KB
testcase_21 AC 35 ms
51,840 KB
testcase_22 AC 34 ms
51,968 KB
testcase_23 AC 38 ms
57,984 KB
testcase_24 AC 39 ms
58,112 KB
testcase_25 AC 34 ms
51,840 KB
testcase_26 AC 37 ms
56,960 KB
testcase_27 AC 234 ms
63,488 KB
testcase_28 AC 599 ms
63,488 KB
testcase_29 AC 54 ms
62,464 KB
testcase_30 AC 164 ms
62,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

def dpsum(N):
    if N == 1:
        return -1
    pn = [2]
    for i in range(3,N+1,2):
        for s in pn:
            if i%s == 0:break
        else:pn += [i]
    Q = [1]+[0]*N
    for p in pn:
        for i in range(N,-1,-1):
            if Q[i] > 0 and i+p <= N:
                Q[i+p] = max(Q[i+p], Q[i]+1)
    return Q[N]-1

print(dpsum(N))
0