結果

問題 No.967 引き算をして門松列(その2)
ユーザー vwxyzvwxyz
提出日時 2024-04-21 16:00:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 666 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 79,320 KB
最終ジャッジ日時 2024-10-13 14:57:35
合計ジャッジ時間 2,937 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 202 ms
78,860 KB
testcase_04 AC 203 ms
78,884 KB
testcase_05 AC 188 ms
79,320 KB
testcase_06 AC 199 ms
78,992 KB
testcase_07 AC 118 ms
76,672 KB
testcase_08 AC 131 ms
77,076 KB
testcase_09 AC 176 ms
77,292 KB
testcase_10 AC 154 ms
77,056 KB
testcase_11 AC 184 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
T=int(input())
inf=1<<60
for t in range(T):
    A,B,C,X,Y,Z=map(int,input().split())
    ans=inf
    for tpl in itertools.permutations(range(3)):
        if tpl[1]==1:
            continue
        ABC=[A,B,C]
        for i,j in zip(tpl,tpl[1:]):
            ABC[j]=min(ABC[j],ABC[i]-1)
        if min(ABC)>0:
            ans=min(ans,sum((a-aa)*x for a,aa,x in zip((A,B,C),ABC,(X,Y,Z))))
    if ans==inf:
        ans=-1
    print(ans)
0