結果
問題 | No.966 引き算をして門松列(その1) |
ユーザー | titia |
提出日時 | 2020-02-05 18:59:32 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 630 bytes |
コンパイル時間 | 138 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 18,204 KB |
最終ジャッジ日時 | 2024-09-22 20:25:54 |
合計ジャッジ時間 | 3,825 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
17,948 KB |
testcase_01 | AC | 34 ms
11,136 KB |
testcase_02 | AC | 38 ms
11,136 KB |
testcase_03 | AC | 103 ms
11,264 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
ソースコード
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=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-1,i+3): if j>=0: CAN2.append(j) from itertools import product P=list(product(CAN2,repeat=3)) ANS=1<<31 for x,y,z in P: if kado(A-x,B-y,C-z)==1: ANS=min(ANS,x+y+z) if ANS==1<<31: print(-1) else: print(ANS)