結果

問題 No.27 板の準備
ユーザー OKCH3COOHOKCH3COOH
提出日時 2019-10-25 19:05:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 391 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-21 07:46:02
合計ジャッジ時間 4,967 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
10,752 KB
testcase_01 AC 113 ms
10,752 KB
testcase_02 AC 179 ms
10,624 KB
testcase_03 AC 133 ms
10,752 KB
testcase_04 AC 244 ms
10,752 KB
testcase_05 AC 221 ms
10,752 KB
testcase_06 AC 302 ms
10,752 KB
testcase_07 AC 300 ms
10,496 KB
testcase_08 AC 391 ms
10,624 KB
testcase_09 AC 318 ms
10,752 KB
testcase_10 AC 255 ms
10,496 KB
testcase_11 AC 229 ms
10,752 KB
testcase_12 AC 257 ms
10,752 KB
testcase_13 AC 211 ms
10,496 KB
testcase_14 AC 178 ms
10,752 KB
testcase_15 AC 241 ms
10,752 KB
testcase_16 AC 143 ms
10,752 KB
testcase_17 AC 237 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

V = list(map(int, input().split()))

def f(A, B, C):
    ret = 0
    for v in V:
        cnt = float('inf')
        for a in range(v // A + 1):
            for b in range(v // B + 1):
                l = A * a + B * b
                if (v - l) >= 0 and (v - l) % C == 0:
                    cnt = min(cnt, a + b + (v - l) // C)
        ret += cnt
    return ret

ans = float('inf')
for a in range(1, 31):
    for b in range(1, 31):
        for c in range(1, 31):
            ans = min(ans, f(a, b, c))

print(ans)
0