結果

問題 No.458 異なる素数の和
ユーザー chineristACchineristAC
提出日時 2020-04-06 02:33:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 890 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 71,560 KB
最終ジャッジ日時 2024-07-05 01:40:55
合計ジャッジ時間 3,807 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,072 KB
testcase_01 AC 116 ms
67,700 KB
testcase_02 AC 138 ms
68,908 KB
testcase_03 AC 65 ms
64,464 KB
testcase_04 AC 67 ms
65,824 KB
testcase_05 AC 242 ms
70,880 KB
testcase_06 AC 131 ms
68,964 KB
testcase_07 AC 47 ms
62,788 KB
testcase_08 AC 243 ms
70,728 KB
testcase_09 AC 56 ms
65,216 KB
testcase_10 AC 38 ms
52,520 KB
testcase_11 AC 283 ms
71,472 KB
testcase_12 AC 37 ms
53,136 KB
testcase_13 AC 37 ms
53,996 KB
testcase_14 AC 37 ms
54,064 KB
testcase_15 AC 36 ms
53,172 KB
testcase_16 AC 59 ms
64,484 KB
testcase_17 AC 37 ms
53,140 KB
testcase_18 AC 38 ms
54,436 KB
testcase_19 AC 38 ms
52,652 KB
testcase_20 AC 42 ms
60,236 KB
testcase_21 AC 38 ms
52,524 KB
testcase_22 AC 38 ms
53,904 KB
testcase_23 AC 41 ms
60,180 KB
testcase_24 AC 40 ms
59,404 KB
testcase_25 AC 37 ms
53,008 KB
testcase_26 AC 37 ms
53,424 KB
testcase_27 AC 129 ms
67,144 KB
testcase_28 AC 275 ms
71,560 KB
testcase_29 AC 53 ms
64,560 KB
testcase_30 AC 99 ms
65,924 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=[-10**10 for i in range(0,N+1)]

    dp[N-2]=1
    for i in range(1,n):
        for j in range(0,N-p[i]):
            dp[j]=max(dp[j],1+dp[j+p[i]])
        dp[N-p[i]]=max(1,dp[N-p[i]])

    if dp[0]>0:
        print(dp[0])
    else:
        print(-1)
0