結果

問題 No.967 引き算をして門松列(その2)
ユーザー convexineqconvexineq
提出日時 2021-04-11 02:41:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 582 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 78,444 KB
最終ジャッジ日時 2024-06-26 23:03:15
合計ジャッジ時間 2,667 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 159 ms
77,568 KB
testcase_04 AC 134 ms
77,876 KB
testcase_05 AC 131 ms
76,672 KB
testcase_06 AC 125 ms
76,928 KB
testcase_07 AC 136 ms
77,748 KB
testcase_08 AC 187 ms
78,004 KB
testcase_09 AC 212 ms
78,168 KB
testcase_10 AC 188 ms
78,444 KB
testcase_11 AC 208 ms
77,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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


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