結果

問題 No.385 カップ麺生活
ユーザー qibqib
提出日時 2023-02-26 15:22:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 68,144 KB
最終ジャッジ日時 2024-09-14 06:05:39
合計ジャッジ時間 3,506 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,572 KB
testcase_01 AC 38 ms
52,296 KB
testcase_02 AC 38 ms
53,072 KB
testcase_03 AC 45 ms
60,320 KB
testcase_04 AC 55 ms
64,776 KB
testcase_05 AC 45 ms
60,880 KB
testcase_06 AC 57 ms
65,672 KB
testcase_07 AC 58 ms
67,092 KB
testcase_08 AC 55 ms
64,692 KB
testcase_09 AC 38 ms
52,452 KB
testcase_10 AC 57 ms
65,112 KB
testcase_11 AC 38 ms
51,996 KB
testcase_12 AC 55 ms
64,324 KB
testcase_13 AC 57 ms
66,108 KB
testcase_14 AC 58 ms
68,144 KB
testcase_15 AC 59 ms
67,296 KB
testcase_16 AC 48 ms
62,908 KB
testcase_17 AC 59 ms
66,908 KB
testcase_18 AC 55 ms
64,348 KB
testcase_19 AC 56 ms
65,056 KB
testcase_20 AC 58 ms
66,116 KB
testcase_21 AC 60 ms
67,912 KB
testcase_22 AC 58 ms
66,736 KB
testcase_23 AC 60 ms
67,416 KB
testcase_24 AC 57 ms
65,868 KB
testcase_25 AC 43 ms
59,052 KB
testcase_26 AC 55 ms
65,668 KB
testcase_27 AC 57 ms
66,788 KB
testcase_28 AC 58 ms
66,744 KB
testcase_29 AC 58 ms
65,792 KB
testcase_30 AC 59 ms
66,584 KB
testcase_31 AC 49 ms
61,844 KB
testcase_32 AC 54 ms
65,256 KB
testcase_33 AC 59 ms
66,600 KB
testcase_34 AC 59 ms
68,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1 << 60

m = int(input())
n = int(input())
c = list(map(int, input().split()))

dp = [- INF for _ in range(m + 1)]
dp[m] = 0
for cur in range(m, 0, -1):
  if dp[m] == - INF:
    continue
  for i in range(n):
    nxt = cur - c[i]
    if nxt >= 0:
      dp[nxt] = max(dp[nxt], dp[cur] + 1)

div = [None for _ in range(m + 1)]
div[0] = 1
div[1] = 1
for x in range(m + 1):
  if not div[x] is None:
    continue
  for y in range(x, m + 1, x):
    if div[y] is None:
      div[y] = x

ans = max(dp)
for x in range(2, m + 1):
  if dp[x] > 0 and div[x] == x:
    ans += dp[x]

print(ans)
0