結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
8,584 KB
testcase_01 AC 18 ms
8,696 KB
testcase_02 AC 18 ms
8,620 KB
testcase_03 AC 19 ms
8,616 KB
testcase_04 WA -
testcase_05 AC 70 ms
8,532 KB
testcase_06 AC 85 ms
8,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for n in range(N):
    a, b, c = map(int, input().split())
    if c > a:
        a, c = c, a

    if a == b == c and a >= 3:
        print(3)
    elif  b > a > c or a > c > b:
        print(0)
    elif a > b and b == c and b >= 2:
        print(1)
    elif a == b and b > c:
        if b > c + 1:
            print(1)
        elif b == c + 1 and c >= 2:
            print(2)
    elif a == c and b > a and a >= 2:
        print(1)
    elif a == c and b < a:
        if a > b + 1:
            print(1)
        if a == b + 1 and b >= 2:
            print(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:
            print(-1)
        else:
            print(t)
    else:
        print(-1)





0