結果

問題 No.966 引き算をして門松列(その1)
ユーザー kekurekekure
提出日時 2020-01-28 11:41:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,035 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 10,992 KB
実行使用メモリ 8,688 KB
最終ジャッジ日時 2023-10-13 12:02:36
合計ジャッジ時間 895 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N = int(input())

f = open('input.txt')
A = [int(line.rstrip()) for line in f.readlines()]
for n in range(N):
    a, b, c = map(int, input().split())
    if c > a:
        a, c = c, a
    ans = -1
    if a == b == c and a >= 3:
        ans = 3
    elif  b > a > c or a > c > b:
        ans = 0
    elif a > b and b == c and b >= 2:
        ans = 1
    elif a == b and b > c:
        if b > c + 1:
            ans = 1
        elif b == c + 1 and c >= 2:
            ans = 2
    elif a == c and b > a and a >= 2:
        ans = 1
    elif a == c and b < a:
        if a > b + 1:
            ans = 1
        if a == b + 1 and b >= 2:
            ans = 2
    elif (not a == b and not b == c and not c == a) and (c >= 2 or c == 1 and b > c + 1):
        t = 10000000000
        if c >= 2:
            t = min(t, b - c + 1)
        if b > c + 1:
            t = min(t, a - b + 1)
        if t == 10000000000:
            ans = -1
        else:
            ans = t
    else:
        ans = -1

    print(ans)





0