結果

問題 No.5 数字のブロック
ユーザー Ryushi-techRyushi-tech
提出日時 2020-06-26 21:38:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 65,792 KB
最終ジャッジ日時 2024-07-04 20:07:41
合計ジャッジ時間 7,395 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 WA -
testcase_03 AC 462 ms
65,280 KB
testcase_04 AC 55 ms
65,792 KB
testcase_05 WA -
testcase_06 AC 229 ms
64,640 KB
testcase_07 AC 323 ms
64,708 KB
testcase_08 AC 184 ms
64,512 KB
testcase_09 AC 109 ms
64,128 KB
testcase_10 AC 305 ms
65,280 KB
testcase_11 AC 115 ms
64,000 KB
testcase_12 AC 442 ms
64,640 KB
testcase_13 AC 307 ms
65,664 KB
testcase_14 AC 52 ms
60,928 KB
testcase_15 WA -
testcase_16 AC 473 ms
65,152 KB
testcase_17 AC 610 ms
65,664 KB
testcase_18 AC 360 ms
65,536 KB
testcase_19 AC 775 ms
65,792 KB
testcase_20 AC 45 ms
59,008 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 36 ms
52,224 KB
testcase_24 AC 48 ms
61,952 KB
testcase_25 AC 86 ms
62,208 KB
testcase_26 AC 41 ms
58,368 KB
testcase_27 AC 41 ms
58,240 KB
testcase_28 AC 40 ms
59,008 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 42 ms
58,752 KB
testcase_32 AC 41 ms
57,600 KB
testcase_33 AC 36 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = int(input())
n = int(input())
W = sorted(list(map(int, input().split())))

dp = [-1] * (l+1)
dp[0] = 0

for w in W:
    for i in range(l, -1, -1):
      if i + w > l:
        continue
      elif dp[i] >= 0:
        dp[i + w] = max(dp[i] + 1, dp[i + w])

print(max(dp[:l]))

0