結果

問題 No.458 異なる素数の和
ユーザー efunyoefunyo
提出日時 2020-04-06 21:08:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 1,187 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 67,372 KB
最終ジャッジ日時 2024-07-07 01:31:03
合計ジャッジ時間 3,759 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
63,068 KB
testcase_01 AC 109 ms
65,968 KB
testcase_02 AC 133 ms
67,372 KB
testcase_03 AC 62 ms
66,928 KB
testcase_04 AC 71 ms
65,668 KB
testcase_05 AC 262 ms
66,436 KB
testcase_06 AC 126 ms
65,852 KB
testcase_07 AC 44 ms
62,876 KB
testcase_08 AC 244 ms
65,856 KB
testcase_09 AC 50 ms
65,040 KB
testcase_10 AC 37 ms
55,972 KB
testcase_11 AC 270 ms
66,456 KB
testcase_12 AC 38 ms
55,252 KB
testcase_13 AC 37 ms
54,812 KB
testcase_14 AC 37 ms
55,812 KB
testcase_15 AC 37 ms
55,996 KB
testcase_16 AC 56 ms
65,836 KB
testcase_17 AC 39 ms
55,560 KB
testcase_18 AC 38 ms
56,252 KB
testcase_19 AC 37 ms
56,092 KB
testcase_20 AC 43 ms
60,216 KB
testcase_21 AC 38 ms
54,812 KB
testcase_22 AC 38 ms
54,820 KB
testcase_23 AC 41 ms
60,488 KB
testcase_24 AC 41 ms
61,980 KB
testcase_25 AC 37 ms
56,000 KB
testcase_26 AC 35 ms
55,576 KB
testcase_27 AC 118 ms
66,380 KB
testcase_28 AC 267 ms
67,012 KB
testcase_29 AC 50 ms
66,280 KB
testcase_30 AC 107 ms
66,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

'''
https://yukicoder.me/problems/931
'''

def main():
    import sys
    input = sys.stdin.readline
    sys.setrecursionlimit(10**7)
    from collections import Counter, deque
    #from collections import defaultdict
    from itertools import combinations, permutations, accumulate, groupby
    #from itertools import product
    from bisect import bisect_left,bisect_right
    from heapq import heapify, heappop, heappush
    from math import floor, ceil
    #from operator import itemgetter

    #inf = 10**17
    #mod = 10**9 + 7

    n = int(input())
    def primecheck(n):
        #0~nまで素数判定
        p = [True] * (n + 1)
        p[0] = False
        p[1] = False
        for i in range(2, int(n ** 0.5) + 1):
            if p[i]:
                for j in range(i * i, n + 1, i):
                    p[j] = False
        return p
    
    p = primecheck(n)
    l = []
    for i, x in enumerate(p):
        if x:
            l.append(i)
    
    dp = [-1]*(n+1)
    dp[0] = 0
    for i in l:
        for j in range(n, i-1, -1):
            if dp[j-i] >= 0:
                dp[j] = max(dp[j-i]+1, dp[j])
    print(dp[-1])
            
if __name__ == '__main__':
    main()
0