結果

問題 No.458 異なる素数の和
ユーザー ああいいああいい
提出日時 2022-01-28 13:43:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,660 ms / 2,000 ms
コード長 667 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 417,152 KB
最終ジャッジ日時 2024-06-09 06:10:24
合計ジャッジ時間 11,806 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
62,464 KB
testcase_01 AC 552 ms
176,640 KB
testcase_02 AC 683 ms
203,904 KB
testcase_03 AC 171 ms
90,112 KB
testcase_04 AC 195 ms
89,344 KB
testcase_05 AC 1,382 ms
358,144 KB
testcase_06 AC 653 ms
200,064 KB
testcase_07 AC 65 ms
64,896 KB
testcase_08 AC 1,398 ms
360,576 KB
testcase_09 AC 102 ms
72,704 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 1,660 ms
417,152 KB
testcase_12 AC 41 ms
52,096 KB
testcase_13 AC 40 ms
51,840 KB
testcase_14 AC 41 ms
51,968 KB
testcase_15 AC 41 ms
52,224 KB
testcase_16 AC 133 ms
88,320 KB
testcase_17 AC 48 ms
59,008 KB
testcase_18 AC 48 ms
58,624 KB
testcase_19 AC 41 ms
52,096 KB
testcase_20 AC 52 ms
59,648 KB
testcase_21 AC 42 ms
51,968 KB
testcase_22 AC 42 ms
51,840 KB
testcase_23 AC 50 ms
59,776 KB
testcase_24 AC 50 ms
59,648 KB
testcase_25 AC 41 ms
52,352 KB
testcase_26 AC 48 ms
58,752 KB
testcase_27 AC 611 ms
180,608 KB
testcase_28 AC 1,612 ms
409,472 KB
testcase_29 AC 81 ms
68,736 KB
testcase_30 AC 405 ms
134,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
dat = [0] * (N + 1)
p = []
for i in range(2,N+1):
    if dat[i] == 0:
        for j in range(i * 2,N+1,i):
            dat[j] = 1
        p.append(i)
import sys
if N == 1:
    print(-1)
    exit()
if N == 2 or N == 3:
    print(1)
    exit()
if N == 4:
    print(-1)
    exit()

n = len(p)
dp = [[-1] * (N+1) for _ in range(n)]
dp[0][p[0]] = 1
for i in range(n-1):
    for j in range(N+1):
        if dp[i][j] > 0:
            dp[i+1][j] = dp[i][j]
    for j in range(N+1):
        if dp[i][j] > 0 and j + p[i+1] <= N:
            dp[i+1][j+p[i+1]] = max(dp[i+1][j+p[i+1]],dp[i][j] + 1)
    dp[i+1][p[i+1]] = max(dp[i+1][p[i+1]],1)
print(dp[-1][-1])
0