結果

問題 No.27 板の準備
ユーザー qibqib
提出日時 2023-02-08 02:01:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 5,000 ms
コード長 485 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,672 KB
最終ジャッジ日時 2024-07-05 18:28:41
合計ジャッジ時間 3,669 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
77,340 KB
testcase_01 AC 138 ms
77,664 KB
testcase_02 AC 153 ms
77,284 KB
testcase_03 AC 156 ms
77,028 KB
testcase_04 AC 144 ms
76,896 KB
testcase_05 AC 147 ms
77,028 KB
testcase_06 AC 152 ms
77,296 KB
testcase_07 AC 146 ms
77,548 KB
testcase_08 AC 150 ms
77,672 KB
testcase_09 AC 150 ms
77,408 KB
testcase_10 AC 143 ms
77,596 KB
testcase_11 AC 151 ms
77,152 KB
testcase_12 AC 149 ms
77,152 KB
testcase_13 AC 136 ms
77,324 KB
testcase_14 AC 142 ms
77,036 KB
testcase_15 AC 142 ms
77,160 KB
testcase_16 AC 141 ms
77,412 KB
testcase_17 AC 144 ms
76,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1 << 60

v = list(map(int, input().split()))

m = 30

ans = INF
for a in range(1, m + 1):
  for b in range(a + 1, m + 1):
    for c in range(b + 1, m + 1):
      dp = [INF for _ in range(m + 1)]
      dp[0] = 0
      for x in range(m):
        if dp[x] == INF:
          continue
        for y in [a, b, c]:
          if x + y <= m:
            dp[x + y] = min(dp[x + y], dp[x] + 1)

      if max(dp[x] for x in v) < INF:
        ans = min(ans, sum(dp[x] for x in v))

print(ans)
0