結果

問題 No.27 板の準備
ユーザー tookunn_1213tookunn_1213
提出日時 2016-09-16 22:06:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 347 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-08 00:33:09
合計ジャッジ時間 3,933 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
10,624 KB
testcase_01 AC 160 ms
10,624 KB
testcase_02 AC 163 ms
10,624 KB
testcase_03 AC 168 ms
10,752 KB
testcase_04 AC 164 ms
10,624 KB
testcase_05 AC 167 ms
10,624 KB
testcase_06 AC 164 ms
10,624 KB
testcase_07 AC 163 ms
10,624 KB
testcase_08 AC 178 ms
10,752 KB
testcase_09 AC 171 ms
10,752 KB
testcase_10 AC 175 ms
10,624 KB
testcase_11 AC 181 ms
10,624 KB
testcase_12 AC 173 ms
10,624 KB
testcase_13 AC 173 ms
10,624 KB
testcase_14 AC 179 ms
10,624 KB
testcase_15 AC 177 ms
10,624 KB
testcase_16 AC 165 ms
10,752 KB
testcase_17 AC 171 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

v=list(map(int,input().split()))
s=31
for a in range(1,31):
	for b in range(a,31):
		for c in range(b,31):
			d=[31]*31
			d[0]=0
			for i in range(30):
				if i+a<=30:
					d[i+a]=min(d[i+a],d[i]+1)
				if i+b<=30:
					d[i+b]=min(d[i+b],d[i]+1)
				if i+c<=30:
					d[i+c]=min(d[i+c],d[i]+1)
			s=min(s,sum([d[v[i]] for i in range(4)]))
print(s)
0