結果

問題 No.968 引き算をして門松列(その3)
ユーザー kimiyukikimiyuki
提出日時 2020-01-13 21:20:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 504 ms / 2,000 ms
コード長 974 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 79,180 KB
最終ジャッジ日時 2024-06-02 04:23:29
合計ジャッジ時間 4,075 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,004 KB
testcase_01 AC 37 ms
54,016 KB
testcase_02 AC 48 ms
63,276 KB
testcase_03 AC 261 ms
77,420 KB
testcase_04 AC 270 ms
77,516 KB
testcase_05 AC 268 ms
77,448 KB
testcase_06 AC 271 ms
77,560 KB
testcase_07 AC 263 ms
77,188 KB
testcase_08 AC 335 ms
77,976 KB
testcase_09 AC 469 ms
78,660 KB
testcase_10 AC 473 ms
78,188 KB
testcase_11 AC 504 ms
79,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import math

def iterate(a, b, c):
    for a in range(a, a + 4):
        for b in range(b, b + 4):
            for c in range(c, c + 4):
                yield a, b, c
                yield max(b + 1, a), b, max(max(b + 1, a) + 1, c)
                yield max(max(b + 1, c) + 1, a), b, max(b + 1, c)
                yield a, max(max(a + 1, c) + 1, b), max(a + 1, c)
                yield max(c + 1, a), max(max(c + 1, a) + 1, b), c

def solve(a, b, c, x, y, z):
    ans = math.inf
    for na, nb, nc in iterate(a, b, c):
        da = na - a
        db = nb - b
        dc = nc - c
        na, nb, nc = a - db - dc, b - dc - da, c - da - db
        if na != nc and ((na < nb and nb > nc) or (na > nb and nb < nc)):
            if na >= 1 and nb >= 1 and nc >= 1:
                ans = min(ans, y * da + z * db + x * dc)
    if math.isinf(ans):
        return -1
    return ans

for _ in range(int(input())):
    print(solve(*map(int, input().split())))
0