結果

問題 No.458 異なる素数の和
ユーザー ayaoniayaoni
提出日時 2020-12-05 20:52:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 1,518 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2024-09-16 03:20:49
合計ジャッジ時間 4,690 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
61,312 KB
testcase_01 AC 143 ms
64,384 KB
testcase_02 AC 170 ms
64,128 KB
testcase_03 AC 78 ms
63,616 KB
testcase_04 AC 83 ms
63,872 KB
testcase_05 AC 306 ms
64,512 KB
testcase_06 AC 162 ms
64,384 KB
testcase_07 AC 57 ms
62,464 KB
testcase_08 AC 309 ms
64,640 KB
testcase_09 AC 64 ms
63,360 KB
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 364 ms
65,024 KB
testcase_12 AC 41 ms
52,096 KB
testcase_13 AC 41 ms
52,352 KB
testcase_14 AC 41 ms
52,096 KB
testcase_15 AC 40 ms
52,608 KB
testcase_16 AC 69 ms
63,488 KB
testcase_17 AC 41 ms
52,608 KB
testcase_18 AC 42 ms
52,864 KB
testcase_19 AC 41 ms
52,224 KB
testcase_20 AC 47 ms
59,008 KB
testcase_21 AC 42 ms
52,480 KB
testcase_22 AC 41 ms
52,352 KB
testcase_23 AC 47 ms
58,752 KB
testcase_24 AC 47 ms
58,752 KB
testcase_25 AC 42 ms
52,352 KB
testcase_26 AC 41 ms
52,480 KB
testcase_27 AC 159 ms
64,000 KB
testcase_28 AC 347 ms
65,152 KB
testcase_29 AC 61 ms
62,976 KB
testcase_30 AC 120 ms
63,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


def sieve_of_eratosthenes(n):  # n以下の素数の全列挙
    prime_list = []
    A = [1]*(n+1)  # A[i] = iが素数なら1,その他は0
    A[0] = A[1] = 0
    for i in range(2,int(n**.5)+1):
        if A[i]:
            prime_list.append(i)
            for j in range(i**2,n+1,i):
                A[j] = 0
    for i in range(int(n**.5)+1,n+1):
        if A[i] == 1:
            prime_list.append(i)
    return prime_list


N = I()
primes = sieve_of_eratosthenes(N)

dp = [(0,0)]*(N+1)
# dp[i] = (iを構成する素数の最大個数,iを構成する最大の素数の最小値)
inf = 10**18
for i in range(1,N+1):
    count = 0
    prime = inf
    for p in primes:
        if p > i:
            break
        if dp[i-p][0] == -1:
            continue
        a,b = dp[i-p]
        if p <= b or a+1 < count:
            continue
        if a+1 == count:
            prime = min(prime,p)
        elif a+1 > count:
            count = a+1
            prime = p
    if count == 0:
        dp[i] = (-1,0)
    else:
        dp[i] = (count,prime)

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