結果

問題 No.967 引き算をして門松列(その2)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-04-20 23:43:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 674 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 78,836 KB
最終ジャッジ日時 2024-06-12 02:24:54
合計ジャッジ時間 2,941 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 149 ms
77,568 KB
testcase_04 AC 140 ms
77,312 KB
testcase_05 AC 139 ms
77,696 KB
testcase_06 AC 142 ms
77,904 KB
testcase_07 AC 141 ms
77,824 KB
testcase_08 AC 198 ms
78,364 KB
testcase_09 AC 199 ms
78,168 KB
testcase_10 AC 185 ms
78,200 KB
testcase_11 AC 231 ms
78,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

inf = 10**30
# b > c > a 
def calc1(a,b,c,x,y,z):

    count = 0
    if b <= c:
        count += (c-b+1)*z
        c = b-1
    if a >= c:
        count += (a-c+1)*x
        a = c-1
    if a > 0:
        return count
    return inf

# c > a > b
def calc2(a,b,c,x,y,z):
   
    count = 0
    if a >= c:
        count += (a-c+1)*x
        a = c-1
    if b >= a:
        count += (b-a+1)*y
        b = a-1
    if b > 0:
        return count
    return inf

t = int(input())
for _ in range(t):
    a,b,c,x,y,z = map(int,input().split())

    ans = min(calc1(a,b,c,x,y,z),calc2(a,b,c,x,y,z),calc1(c,b,a,z,y,x),calc2(c,b,a,z,y,x))
    if ans == inf:
        ans = -1
    print(ans)
0