結果

問題 No.27 板の準備
ユーザー zimphazimpha
提出日時 2017-12-11 23:11:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 563 ms / 5,000 ms
コード長 356 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-26 13:18:19
合計ジャッジ時間 8,531 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
10,496 KB
testcase_01 AC 114 ms
10,496 KB
testcase_02 AC 533 ms
10,496 KB
testcase_03 AC 139 ms
10,496 KB
testcase_04 AC 399 ms
10,624 KB
testcase_05 AC 313 ms
10,496 KB
testcase_06 AC 422 ms
10,496 KB
testcase_07 AC 529 ms
10,496 KB
testcase_08 AC 563 ms
10,496 KB
testcase_09 AC 529 ms
10,496 KB
testcase_10 AC 511 ms
10,496 KB
testcase_11 AC 353 ms
10,368 KB
testcase_12 AC 424 ms
10,496 KB
testcase_13 AC 399 ms
10,496 KB
testcase_14 AC 335 ms
10,368 KB
testcase_15 AC 504 ms
10,624 KB
testcase_16 AC 178 ms
10,496 KB
testcase_17 AC 562 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def count(a, b):
  n = max(b)
  dp = [1e9] * (n + 1)
  dp[0] = 0
  for x in a:
    for i in range(x, n + 1):
      dp[i] = min(dp[i], dp[i - x] + 1)
  return sum([dp[x] for x in b])

v = list(map(int, input().split()))
ret = 1e9
for x in range(1, 31):
  for y in range(1, 31):
    for z in range(1, 31):
      ret = min(ret, count([x, y, z], v))
print(ret)
0