結果

問題 No.27 板の準備
ユーザー yuma25689yuma25689
提出日時 2015-11-11 01:48:57
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 212 ms / 5,000 ms
コード長 923 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-12-26 11:55:26
合計ジャッジ時間 5,152 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 212 ms
10,624 KB
testcase_01 AC 205 ms
10,624 KB
testcase_02 AC 204 ms
10,496 KB
testcase_03 AC 200 ms
10,624 KB
testcase_04 AC 202 ms
10,624 KB
testcase_05 AC 201 ms
10,624 KB
testcase_06 AC 202 ms
10,752 KB
testcase_07 AC 202 ms
10,624 KB
testcase_08 AC 202 ms
10,624 KB
testcase_09 AC 202 ms
10,624 KB
testcase_10 AC 202 ms
10,624 KB
testcase_11 AC 206 ms
10,752 KB
testcase_12 AC 201 ms
10,624 KB
testcase_13 AC 207 ms
10,496 KB
testcase_14 AC 204 ms
10,752 KB
testcase_15 AC 202 ms
10,624 KB
testcase_16 AC 201 ms
10,624 KB
testcase_17 AC 201 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 入力

# V0 V1 V2 V3
# 指定された板の長さが4つ(V0,V1,V2,V3)与えられます。
# 1<=V0,V1,V2,V3<=30の整数であり、Vi=Vj (0<=i,j<=3)となる場合もあります。

# 出力

# 必要な板の数を文字列で最後に改行を含め出力してく
INF=10e9
plate_max=30

plateTarget = input().split()

res=INF

for plateA in range(1,plate_max+1):
	for plateB in range(plateA+1,plate_max+1):
		for plateC in range(plateB+1,plate_max+1):
			# このプレートABCの組み合わせでの、最小枚数を求める
			# メモ用配列初期化
			minCount=[ INF for i in range(plate_max+1)]
			minCount[0]=0
			arr=[plateA,plateB,plateC]
			for plateLen in arr:
				for i in range(int(plateLen),plate_max+1):
					minCount[i]=min(minCount[i],minCount[i-int(plateLen)]+1)

			# 4枚分集計
			tmp=0
			for target in plateTarget:
				tmp+=minCount[int(target)]

			res=min(res,tmp)

print(res)
0