結果

問題 No.27 板の準備
ユーザー pluto77pluto77
提出日時 2016-10-09 09:51:16
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 270 ms / 5,000 ms
コード長 361 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 76,288 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-12-26 12:51:14
合計ジャッジ時間 7,102 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
77,952 KB
testcase_01 AC 179 ms
77,824 KB
testcase_02 AC 248 ms
77,952 KB
testcase_03 AC 187 ms
78,592 KB
testcase_04 AC 238 ms
77,824 KB
testcase_05 AC 241 ms
78,080 KB
testcase_06 AC 247 ms
77,824 KB
testcase_07 AC 249 ms
77,824 KB
testcase_08 AC 270 ms
78,464 KB
testcase_09 AC 254 ms
77,824 KB
testcase_10 AC 239 ms
77,568 KB
testcase_11 AC 250 ms
78,464 KB
testcase_12 AC 245 ms
77,824 KB
testcase_13 AC 225 ms
78,336 KB
testcase_14 AC 234 ms
77,952 KB
testcase_15 AC 246 ms
78,592 KB
testcase_16 AC 177 ms
78,080 KB
testcase_17 AC 245 ms
78,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_27

INF=1000
v=map(int,raw_input().split())
res=INF
for a in xrange(1,31):
 for b in xrange(1,31):
  for c in xrange(1,31):
   temp=0
   for x in v:
    rtemp=INF
    for i in xrange(31):
     for j in xrange(31):
      k=x-i*a-j*b
      if k<0:
       break
      if k%c==0:
       rtemp=min(rtemp,i+j+k/c)
    temp+=rtemp
   res=min(res,temp)
print res
0