結果

問題 No.458 異なる素数の和
ユーザー 双六双六
提出日時 2020-08-08 04:21:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 480 ms / 2,000 ms
コード長 724 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 67,208 KB
最終ジャッジ日時 2024-09-25 07:23:25
合計ジャッジ時間 5,809 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
65,064 KB
testcase_01 AC 246 ms
67,208 KB
testcase_02 AC 282 ms
66,628 KB
testcase_03 AC 135 ms
65,772 KB
testcase_04 AC 145 ms
66,232 KB
testcase_05 AC 432 ms
66,808 KB
testcase_06 AC 272 ms
65,836 KB
testcase_07 AC 68 ms
66,684 KB
testcase_08 AC 434 ms
66,284 KB
testcase_09 AC 96 ms
66,680 KB
testcase_10 AC 54 ms
63,296 KB
testcase_11 AC 480 ms
66,592 KB
testcase_12 AC 52 ms
65,024 KB
testcase_13 AC 52 ms
64,176 KB
testcase_14 AC 52 ms
64,240 KB
testcase_15 AC 52 ms
63,996 KB
testcase_16 AC 113 ms
67,100 KB
testcase_17 AC 53 ms
63,436 KB
testcase_18 AC 52 ms
63,368 KB
testcase_19 AC 52 ms
64,504 KB
testcase_20 AC 57 ms
64,252 KB
testcase_21 AC 53 ms
63,300 KB
testcase_22 AC 53 ms
63,236 KB
testcase_23 AC 55 ms
65,092 KB
testcase_24 AC 56 ms
64,908 KB
testcase_25 AC 53 ms
63,740 KB
testcase_26 AC 53 ms
63,644 KB
testcase_27 AC 265 ms
65,760 KB
testcase_28 AC 474 ms
65,968 KB
testcase_29 AC 82 ms
65,768 KB
testcase_30 AC 214 ms
65,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

num = 2 * 10 ** 4 + 1 #適当に値を入れる
L = [1 for i in range(num)]; L[0] = 0; L[1] = 0
plist = []
for i in range(num):
	if L[i] == 1:
		plist.append(i); c = 2
		while i * c <= num - 1:
			L[i * c] = 0; c += 1

#処理内容
def main():
	N = int(input())
	DP = [0] * (N + 1)
	DP[0] = 1
	for i in plist:
		for j in range(N, -1, -1):
			if j + i <= N and DP[j] != 0:
				DP[i + j] = max(DP[i + j], DP[j] + 1)

	# print(DP)
	if DP[N] == 0:
		print(-1)
	else:
		print(DP[N] - 1)

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