結果

問題 No.27 板の準備
ユーザー roiti46roiti46
提出日時 2015-02-18 02:30:57
言語 Python2
(2.7.18)
結果
AC  
実行時間 2,417 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-06-07 23:27:31
合計ジャッジ時間 40,338 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,859 ms
6,272 KB
testcase_01 AC 1,865 ms
6,400 KB
testcase_02 AC 1,983 ms
6,272 KB
testcase_03 AC 1,901 ms
6,272 KB
testcase_04 AC 2,035 ms
6,272 KB
testcase_05 AC 2,029 ms
6,400 KB
testcase_06 AC 2,147 ms
6,400 KB
testcase_07 AC 2,116 ms
6,272 KB
testcase_08 AC 2,259 ms
6,272 KB
testcase_09 AC 2,172 ms
6,400 KB
testcase_10 AC 2,417 ms
6,272 KB
testcase_11 AC 2,037 ms
6,400 KB
testcase_12 AC 2,072 ms
6,400 KB
testcase_13 AC 2,018 ms
6,400 KB
testcase_14 AC 1,961 ms
6,400 KB
testcase_15 AC 2,044 ms
6,400 KB
testcase_16 AC 1,912 ms
6,400 KB
testcase_17 AC 2,040 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as it
V = map(int,raw_input().split())

ans = 1000
for a,b,c in it.product(range(1,31),repeat = 3):
    tmp = 0
    for Vi in V:
        need = 1000
        for i in range(31):
            for j in range(31):
                rem = Vi-i*a-j*b
                if rem < 0: break
                if rem%c == 0:
                    need = min(need,i+j+rem/c)
        tmp += need
    ans = min(ans, tmp)
print ans
0