結果

問題 No.968 引き算をして門松列(その3)
ユーザー convexineqconvexineq
提出日時 2021-04-11 02:58:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 78,684 KB
最終ジャッジ日時 2024-06-26 23:43:11
合計ジャッジ時間 2,864 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 158 ms
77,824 KB
testcase_04 AC 141 ms
77,648 KB
testcase_05 AC 155 ms
77,952 KB
testcase_06 AC 144 ms
77,944 KB
testcase_07 AC 135 ms
77,696 KB
testcase_08 AC 184 ms
78,152 KB
testcase_09 AC 212 ms
78,484 KB
testcase_10 AC 226 ms
78,684 KB
testcase_11 AC 217 ms
77,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def bmin(a,b,c,x,y,z):
    Y,X = max(0,b+1-a), max(0,b+1-c)
    r = y*Y + x*X
    a -= X
    c -= Y
    b -= X+Y
    if a == c:
        a -= 1
        b -= 1
        r += min(x,y)
    if a <= 0 or b <= 0 or c <= 0: return INF
    return r

def bmax(a,b,c,x,y,z):
    r = 0
    if a==c:
        a -= 1
        b -= 1
        r += min(x,y)
    v = max(b,max(a,c)+1)-b
    a -= v
    c -= v
    if a <= 0 or b <= 0 or c <= 0: return INF
    return r+v*z


INF = 4*10**18
T = int(input())
for _ in range(T):
    a,b,c,x,y,z = map(int,input().split())
    p = bmin(a,b,c,x,y,z)
    q = bmax(a,b,c,x,y,z)
    ans = min(p,q)
    print(-1 if ans == INF else ans)
0