結果

問題 No.27 板の準備
ユーザー zimphazimpha
提出日時 2017-12-11 23:11:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 419 ms / 5,000 ms
コード長 356 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-08 00:45:55
合計ジャッジ時間 5,935 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
10,496 KB
testcase_01 AC 91 ms
10,752 KB
testcase_02 AC 407 ms
10,496 KB
testcase_03 AC 101 ms
10,752 KB
testcase_04 AC 295 ms
10,624 KB
testcase_05 AC 231 ms
10,496 KB
testcase_06 AC 314 ms
10,752 KB
testcase_07 AC 394 ms
10,624 KB
testcase_08 AC 415 ms
10,496 KB
testcase_09 AC 401 ms
10,624 KB
testcase_10 AC 373 ms
10,624 KB
testcase_11 AC 276 ms
10,496 KB
testcase_12 AC 319 ms
10,496 KB
testcase_13 AC 296 ms
10,624 KB
testcase_14 AC 242 ms
10,624 KB
testcase_15 AC 384 ms
10,496 KB
testcase_16 AC 133 ms
10,624 KB
testcase_17 AC 419 ms
10,624 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