結果

問題 No.458 異なる素数の和
ユーザー phtmscgphtmscg
提出日時 2019-05-13 18:03:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 363 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 63,872 KB
最終ジャッジ日時 2024-07-07 22:50:45
合計ジャッジ時間 4,812 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
60,416 KB
testcase_01 AC 154 ms
63,232 KB
testcase_02 AC 188 ms
62,848 KB
testcase_03 AC 76 ms
62,208 KB
testcase_04 AC 79 ms
62,592 KB
testcase_05 AC 362 ms
63,704 KB
testcase_06 AC 186 ms
62,948 KB
testcase_07 AC 46 ms
60,544 KB
testcase_08 AC 361 ms
63,360 KB
testcase_09 AC 59 ms
62,460 KB
testcase_10 AC 39 ms
52,096 KB
testcase_11 AC 429 ms
63,872 KB
testcase_12 WA -
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 37 ms
52,480 KB
testcase_15 WA -
testcase_16 AC 63 ms
62,720 KB
testcase_17 AC 40 ms
57,088 KB
testcase_18 AC 40 ms
57,344 KB
testcase_19 AC 37 ms
52,096 KB
testcase_20 AC 42 ms
58,624 KB
testcase_21 AC 36 ms
51,880 KB
testcase_22 AC 37 ms
51,968 KB
testcase_23 AC 40 ms
57,728 KB
testcase_24 AC 40 ms
58,752 KB
testcase_25 AC 39 ms
51,968 KB
testcase_26 AC 39 ms
57,472 KB
testcase_27 AC 176 ms
62,952 KB
testcase_28 AC 429 ms
63,488 KB
testcase_29 WA -
testcase_30 AC 125 ms
62,592 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 p > 0 and i+p <= N:
                Q[i+p] = max(Q[i+p], Q[i]+1)
    return Q[N]-1

print(dpsum(N))
0