結果

問題 No.458 異なる素数の和
ユーザー qibqib
提出日時 2022-12-05 03:12:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 479 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 66,648 KB
最終ジャッジ日時 2024-10-12 02:30:53
合計ジャッジ時間 3,761 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
59,404 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 65 ms
65,128 KB
testcase_04 AC 71 ms
66,316 KB
testcase_05 AC 244 ms
65,680 KB
testcase_06 WA -
testcase_07 AC 44 ms
60,016 KB
testcase_08 AC 244 ms
66,280 KB
testcase_09 AC 53 ms
63,648 KB
testcase_10 AC 37 ms
52,864 KB
testcase_11 AC 282 ms
66,000 KB
testcase_12 AC 36 ms
52,760 KB
testcase_13 AC 36 ms
53,292 KB
testcase_14 AC 36 ms
53,100 KB
testcase_15 AC 37 ms
52,868 KB
testcase_16 AC 59 ms
64,480 KB
testcase_17 AC 37 ms
52,688 KB
testcase_18 AC 36 ms
52,328 KB
testcase_19 AC 36 ms
52,860 KB
testcase_20 AC 40 ms
58,728 KB
testcase_21 AC 37 ms
52,836 KB
testcase_22 AC 35 ms
52,908 KB
testcase_23 AC 39 ms
57,800 KB
testcase_24 AC 39 ms
58,120 KB
testcase_25 AC 37 ms
52,760 KB
testcase_26 AC 37 ms
52,500 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 49 ms
63,388 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

prime = [True for _ in range(n + 1)]
prime[0] = False
prime[1] = False
for x in range(2, n + 1):
  if not prime[x]:
    continue
  for y in range(2 * x, n + 1, x):
    prime[y] = False

dp = [None for _ in range(n + 1)]
dp[0] = 0
for x in range(2, n + 1):
  if not prime[x]:
    continue
  for y in range(n - x, -1, -1):
    if dp[y] is None or not dp[y + x] is None:
      continue
    dp[y + x] = dp[y] + 1

if dp[n] is None:
  print("-1")
else:
	print(dp[n])
0