結果

問題 No.458 異なる素数の和
ユーザー yuly3yuly3
提出日時 2020-01-18 13:28:16
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 627 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-06-27 13:10:42
合計ジャッジ時間 4,139 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,520 KB
testcase_01 AC 112 ms
64,640 KB
testcase_02 AC 132 ms
66,176 KB
testcase_03 AC 67 ms
62,848 KB
testcase_04 AC 67 ms
63,488 KB
testcase_05 AC 237 ms
68,608 KB
testcase_06 AC 126 ms
65,536 KB
testcase_07 AC 46 ms
60,544 KB
testcase_08 AC 238 ms
68,608 KB
testcase_09 AC 53 ms
62,336 KB
testcase_10 RE -
testcase_11 AC 276 ms
69,376 KB
testcase_12 AC 37 ms
52,608 KB
testcase_13 AC 36 ms
52,224 KB
testcase_14 AC 38 ms
52,480 KB
testcase_15 AC 37 ms
52,224 KB
testcase_16 AC 56 ms
62,592 KB
testcase_17 AC 39 ms
52,352 KB
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 38 ms
52,224 KB
testcase_20 AC 41 ms
57,856 KB
testcase_21 AC 38 ms
52,096 KB
testcase_22 AC 38 ms
52,096 KB
testcase_23 AC 41 ms
57,600 KB
testcase_24 AC 40 ms
57,984 KB
testcase_25 AC 38 ms
52,480 KB
testcase_26 AC 38 ms
52,352 KB
testcase_27 AC 124 ms
65,408 KB
testcase_28 AC 270 ms
69,504 KB
testcase_29 AC 50 ms
62,080 KB
testcase_30 AC 94 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def eratosthenes(n):
    prime = [2]
    limit = int(n ** 0.5)
    data = [i + 1 for i in range(2, n, 2)]
    while True:
        p = data[0]
        if limit <= p:
            return prime + data
        prime.append(p)
        data = [e for e in data if e % p != 0]


def solve():
    N = int(input())
    
    primes = eratosthenes(N)
    dp = [0] + [-1] * N
    
    for p_num in primes:
        for i in range(N, -1, -1):
            if i - p_num < 0:
                break
            if dp[i - p_num] != -1:
                dp[i] = max(dp[i], dp[i - p_num] + 1)
    print(dp[N])


if __name__ == '__main__':
    solve()
0