結果

問題 No.968 引き算をして門松列(その3)
ユーザー titiatitia
提出日時 2020-02-05 20:29:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,142 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 735 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 100,264 KB
最終ジャッジ日時 2024-09-22 22:27:54
合計ジャッジ時間 8,749 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,628 KB
testcase_01 AC 54 ms
65,720 KB
testcase_02 AC 58 ms
68,780 KB
testcase_03 AC 605 ms
87,552 KB
testcase_04 AC 717 ms
88,728 KB
testcase_05 AC 743 ms
88,972 KB
testcase_06 AC 714 ms
88,720 KB
testcase_07 AC 625 ms
87,440 KB
testcase_08 AC 825 ms
91,796 KB
testcase_09 AC 1,112 ms
100,092 KB
testcase_10 AC 1,142 ms
100,264 KB
testcase_11 AC 1,128 ms
100,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from itertools import product

def kado(A,B,C):
    if A>0 and B>0 and C>0 and A!=B and A!=C and B!=C and (max(A,B,C)==B or min(A,B,C)==B):
        return 1
    return 0

T=int(input())
for test in range(T):   
    A,B,C,X,Y,Z=map(int,input().split())
    S=sorted([A,B,C])
    CAN=[S[2]-S[1],S[2]-S[0],S[1]-S[0],0]
    CAN2=[]
    for i in CAN:
        for j in range(i,i+3):
            if j>=0:
                CAN2.append(j)

    P=list(product(CAN2,repeat=3))
    ANS=1<<63

    for x,y,z in P:
        if kado(A-x-z,B-x-y,C-y-z)==1:
            ANS=min(ANS,x*X+y*Y+z*Z)

    if ANS==1<<63:
        print(-1)
    else:
        print(ANS)
            
        
0