結果

問題 No.458 異なる素数の和
ユーザー 双六双六
提出日時 2020-08-08 04:19:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 723 bytes
コンパイル時間 1,384 ms
コンパイル使用メモリ 81,476 KB
実行使用メモリ 66,552 KB
最終ジャッジ日時 2023-10-25 23:05:55
合計ジャッジ時間 6,125 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
66,396 KB
testcase_01 AC 222 ms
66,396 KB
testcase_02 AC 250 ms
66,396 KB
testcase_03 AC 133 ms
66,396 KB
testcase_04 AC 139 ms
66,396 KB
testcase_05 AC 360 ms
66,536 KB
testcase_06 AC 242 ms
66,396 KB
testcase_07 AC 65 ms
66,396 KB
testcase_08 AC 360 ms
66,536 KB
testcase_09 AC 90 ms
66,396 KB
testcase_10 AC 49 ms
64,320 KB
testcase_11 AC 396 ms
66,552 KB
testcase_12 AC 50 ms
64,316 KB
testcase_13 WA -
testcase_14 AC 51 ms
64,316 KB
testcase_15 WA -
testcase_16 AC 105 ms
66,396 KB
testcase_17 AC 50 ms
64,316 KB
testcase_18 AC 50 ms
64,316 KB
testcase_19 AC 49 ms
64,316 KB
testcase_20 AC 55 ms
64,332 KB
testcase_21 AC 48 ms
64,316 KB
testcase_22 AC 49 ms
64,316 KB
testcase_23 AC 51 ms
64,324 KB
testcase_24 AC 53 ms
64,332 KB
testcase_25 AC 50 ms
64,316 KB
testcase_26 AC 50 ms
64,316 KB
testcase_27 AC 237 ms
66,396 KB
testcase_28 AC 401 ms
66,548 KB
testcase_29 WA -
testcase_30 AC 208 ms
66,396 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:
				DP[i + j] = max(DP[i + j], DP[j] + 1)

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

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