結果

問題 No.27 板の準備
ユーザー ayame_pyayame_py
提出日時 2015-10-09 15:27:26
言語 Python2
(2.7.18)
結果
AC  
実行時間 158 ms / 5,000 ms
コード長 455 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-12-26 11:54:16
合計ジャッジ時間 4,170 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
6,016 KB
testcase_01 AC 150 ms
6,016 KB
testcase_02 AC 149 ms
6,016 KB
testcase_03 AC 145 ms
6,144 KB
testcase_04 AC 158 ms
6,016 KB
testcase_05 AC 143 ms
6,144 KB
testcase_06 AC 144 ms
6,016 KB
testcase_07 AC 145 ms
6,144 KB
testcase_08 AC 145 ms
6,016 KB
testcase_09 AC 153 ms
6,016 KB
testcase_10 AC 156 ms
6,016 KB
testcase_11 AC 141 ms
6,016 KB
testcase_12 AC 143 ms
6,016 KB
testcase_13 AC 145 ms
5,888 KB
testcase_14 AC 138 ms
6,016 KB
testcase_15 AC 138 ms
6,016 KB
testcase_16 AC 139 ms
6,016 KB
testcase_17 AC 137 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
V = map(int, raw_input().split())
INF = int(1e9+7)
ans = INF
for a in range(1,31):
	for b in range(a,31):
		for c in range(b,31):
			dp = [INF for _ in range(31)]
			dp2 = [[0, 0 ,0], ]
			dp[0] = 0
			for i in range(1,31):
				at = INF if i - a < 0 else dp[i-a]
				bt = INF if i - b < 0 else dp[i-b]
				ct = INF if i - c < 0 else dp[i-c]
				dp[i] = min(at, bt, ct) + 1
			ans = min(ans, dp[V[0]]+dp[V[1]]+dp[V[2]]+dp[V[3]])

print ans
0