結果

問題 No.27 板の準備
ユーザー roiti46roiti46
提出日時 2015-02-18 02:30:40
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 218 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 1,159 ms
コンパイル使用メモリ 76,288 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-06-07 23:21:49
合計ジャッジ時間 5,345 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
77,824 KB
testcase_01 AC 138 ms
78,464 KB
testcase_02 AC 192 ms
78,336 KB
testcase_03 AC 141 ms
78,592 KB
testcase_04 AC 203 ms
78,208 KB
testcase_05 AC 196 ms
78,208 KB
testcase_06 AC 203 ms
78,208 KB
testcase_07 AC 204 ms
78,080 KB
testcase_08 AC 218 ms
78,464 KB
testcase_09 AC 210 ms
78,080 KB
testcase_10 AC 197 ms
78,336 KB
testcase_11 AC 205 ms
78,848 KB
testcase_12 AC 201 ms
77,824 KB
testcase_13 AC 190 ms
78,336 KB
testcase_14 AC 189 ms
77,824 KB
testcase_15 AC 204 ms
78,464 KB
testcase_16 AC 146 ms
78,720 KB
testcase_17 AC 210 ms
78,336 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