結果

問題 No.458 異なる素数の和
ユーザー terrafarmterrafarm
提出日時 2020-12-14 06:08:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,146 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 81,796 KB
実行使用メモリ 81,864 KB
最終ジャッジ日時 2024-09-20 00:26:05
合計ジャッジ時間 5,970 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
80,096 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 125 ms
80,596 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 83 ms
80,112 KB
testcase_11 AC 426 ms
81,864 KB
testcase_12 AC 89 ms
79,960 KB
testcase_13 AC 88 ms
79,968 KB
testcase_14 AC 88 ms
80,164 KB
testcase_15 AC 88 ms
79,820 KB
testcase_16 AC 115 ms
80,624 KB
testcase_17 AC 86 ms
80,028 KB
testcase_18 AC 89 ms
79,860 KB
testcase_19 AC 86 ms
79,804 KB
testcase_20 WA -
testcase_21 AC 81 ms
79,932 KB
testcase_22 AC 89 ms
79,956 KB
testcase_23 WA -
testcase_24 AC 90 ms
80,132 KB
testcase_25 AC 85 ms
79,956 KB
testcase_26 AC 85 ms
79,964 KB
testcase_27 AC 208 ms
80,832 KB
testcase_28 AC 406 ms
81,744 KB
testcase_29 WA -
testcase_30 AC 164 ms
80,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import logging
import sys
from inspect import currentframe

sys.setrecursionlimit(10 ** 6)
input = sys.stdin.readline

logging.basicConfig(level=logging.DEBUG)


def sieve_eratosthenes(n):
    is_prime = [True] * (n + 1)
    is_prime[0] = is_prime[1] = False
    for i in range(2, n + 1):
        for j in range(2 * i, n + 1, i):
            is_prime[j] = False
    return is_prime


def dbg(*args):
    id2names = {id(v): k for k, v in currentframe().f_back.f_locals.items()}
    logging.debug(
        ", ".join(id2names.get(id(arg), "???") + " = " + repr(arg) for arg in args)
    )


def main():

    # 素数iを足す遷移を後ろからiより大きい数字に対して行う
    n = int(input())
    table = sieve_eratosthenes(n)
    dp = [-1] * (n + 1)
    for i, fl in enumerate(table):
        if fl:
            dp[i] = 1
    for i, fl in enumerate(table):
        if fl:
            for j in range(n, i, -1):
                if dp[j] >= 1 and j + i <= n:
                    dp[i + j] = max(dp[i + j], dp[j] + 1)
    # ans = max(dp)
    dbg(table)
    dbg(dp)
    ans = dp[n]
    print(ans)


if __name__ == "__main__":
    main()
0