結果

問題 No.458 異なる素数の和
ユーザー soyamashsoyamash
提出日時 2023-12-15 23:39:50
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 841 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 701,184 KB
最終ジャッジ日時 2024-09-27 06:41:19
合計ジャッジ時間 11,069 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
62,604 KB
testcase_01 AC 483 ms
263,272 KB
testcase_02 AC 619 ms
330,912 KB
testcase_03 AC 140 ms
106,796 KB
testcase_04 AC 180 ms
129,168 KB
testcase_05 MLE -
testcase_06 AC 581 ms
308,460 KB
testcase_07 AC 54 ms
66,648 KB
testcase_08 MLE -
testcase_09 AC 85 ms
82,760 KB
testcase_10 RE -
testcase_11 MLE -
testcase_12 AC 37 ms
54,208 KB
testcase_13 AC 38 ms
53,460 KB
testcase_14 AC 38 ms
53,268 KB
testcase_15 AC 37 ms
52,196 KB
testcase_16 AC 106 ms
88,828 KB
testcase_17 AC 42 ms
59,560 KB
testcase_18 AC 47 ms
60,928 KB
testcase_19 AC 39 ms
52,596 KB
testcase_20 AC 45 ms
61,680 KB
testcase_21 AC 38 ms
52,812 KB
testcase_22 AC 38 ms
53,180 KB
testcase_23 AC 45 ms
60,724 KB
testcase_24 AC 45 ms
60,888 KB
testcase_25 AC 39 ms
53,276 KB
testcase_26 AC 42 ms
59,368 KB
testcase_27 AC 565 ms
309,024 KB
testcase_28 MLE -
testcase_29 AC 66 ms
73,528 KB
testcase_30 AC 367 ms
218,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://yukicoder.me/problems/931
import math
N = int(input())


def generate_prime(X):
    max_cand = math.ceil(math.sqrt(X))
    cand_list = range(2, X + 1)
    prime_list = []
    while True:
        prime = cand_list[0]
        prime_list.append(prime)
        cand_list = [i for i in cand_list if i % prime != 0]

        if prime > max_cand:
            prime_list.extend(cand_list)
            break
    return prime_list

prime_list = generate_prime(N)
dp = [[-1 for i in range(N + 1)] for j in range(len(prime_list) + 1)]
dp[0][0] = 0
for i in range(len(prime_list)):
    flag = 0
    dp[i + 1] = dp[i][:]
    for j in range(0, N + 1):
        if dp[i][j] != -1 and j + prime_list[i] <= N:
            dp[i + 1][j + prime_list[i]
                      ] = max(dp[i][j + prime_list[i]], dp[i][j] + 1)

print(dp[-1][N])
# print(dp)
0