結果

問題 No.27 板の準備
ユーザー roiti46roiti46
提出日時 2015-02-18 02:30:40
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 282 ms / 5,000 ms
コード長 425 bytes
コンパイル時間 1,701 ms
コンパイル使用メモリ 76,672 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-12-26 10:29:53
合計ジャッジ時間 7,042 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
77,568 KB
testcase_01 AC 178 ms
78,592 KB
testcase_02 AC 252 ms
78,592 KB
testcase_03 AC 184 ms
78,464 KB
testcase_04 AC 257 ms
78,336 KB
testcase_05 AC 248 ms
78,080 KB
testcase_06 AC 258 ms
78,208 KB
testcase_07 AC 260 ms
78,080 KB
testcase_08 AC 282 ms
78,336 KB
testcase_09 AC 269 ms
78,336 KB
testcase_10 AC 260 ms
77,952 KB
testcase_11 AC 278 ms
78,208 KB
testcase_12 AC 271 ms
78,208 KB
testcase_13 AC 254 ms
78,720 KB
testcase_14 AC 245 ms
77,824 KB
testcase_15 AC 256 ms
78,208 KB
testcase_16 AC 178 ms
78,336 KB
testcase_17 AC 264 ms
78,848 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