結果

問題 No.458 異なる素数の和
ユーザー chineristACchineristAC
提出日時 2020-04-06 02:10:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,125 ms / 2,000 ms
コード長 1,013 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 425,344 KB
最終ジャッジ日時 2024-07-05 00:49:03
合計ジャッジ時間 8,899 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
62,080 KB
testcase_01 AC 396 ms
176,640 KB
testcase_02 AC 478 ms
199,296 KB
testcase_03 AC 135 ms
88,704 KB
testcase_04 AC 161 ms
104,576 KB
testcase_05 AC 941 ms
364,928 KB
testcase_06 AC 461 ms
199,168 KB
testcase_07 AC 63 ms
65,408 KB
testcase_08 AC 940 ms
367,616 KB
testcase_09 AC 89 ms
74,240 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 1,125 ms
425,344 KB
testcase_12 AC 40 ms
52,352 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 40 ms
52,224 KB
testcase_15 AC 40 ms
52,480 KB
testcase_16 AC 121 ms
88,576 KB
testcase_17 AC 45 ms
58,624 KB
testcase_18 AC 47 ms
58,752 KB
testcase_19 AC 40 ms
52,096 KB
testcase_20 AC 49 ms
60,160 KB
testcase_21 AC 40 ms
52,480 KB
testcase_22 AC 40 ms
52,224 KB
testcase_23 AC 47 ms
59,520 KB
testcase_24 AC 50 ms
60,032 KB
testcase_25 AC 41 ms
52,608 KB
testcase_26 AC 45 ms
58,368 KB
testcase_27 AC 440 ms
194,048 KB
testcase_28 AC 1,069 ms
417,536 KB
testcase_29 AC 79 ms
70,784 KB
testcase_30 AC 300 ms
148,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def get_sieve_of_eratosthenes_new(n):
    import math
    if not isinstance(n, int):
        raise TypeError('n is int type.')
    if n < 2:
        raise ValueError('n is more than 2')
    prime = []
    limit = math.sqrt(n)
    data = [i + 1 for i in range(1, n)]
    while True:
        p = data[0]
        if limit <= p:
            return prime + data
        prime.append(p)
        data = [e for e in data if e % p != 0]

N=int(input())
if N==1:
    print(-1)
else:
    import math
    if int(math.sqrt(N))**2==N:
        p=get_sieve_of_eratosthenes_new(N+1)
    else:
        p=get_sieve_of_eratosthenes_new(N)
    n=len(p)

    dp=[[-1 for i in range(0,N+1)] for i in range(0,n)]

    dp[0][2]=1

    for i in range(1,n):
        for j in range(0,N+1):
            if j>p[i] and dp[i-1][j-p[i]]!=-1:
                dp[i][j]=max(dp[i-1][j],1+dp[i-1][j-p[i]])
            elif j==p[i]:
                dp[i][j]=max(1,dp[i-1][j])
            else:
                dp[i][j]=dp[i-1][j]

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