結果

問題 No.966 引き算をして門松列(その1)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-04-20 23:30:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-06-12 02:06:56
合計ジャッジ時間 1,519 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 32 ms
51,712 KB
testcase_03 AC 33 ms
52,352 KB
testcase_04 AC 131 ms
77,232 KB
testcase_05 AC 127 ms
77,184 KB
testcase_06 AC 140 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

inf = 10**20
def calc1(a,b,c):
    count = 0
    if b <= c:
        count += c-b+1
        c = b-1
    if a >= c:
        count += a-c+1
        a = c-1
    if a > 0:
        return count
    return inf


def calc2(a,b,c):
    count = 0
    if a == c:
        a -= 1
        count += 1
    if b >= a:
        count += b-a+1
        b = a-1
    if b > 0:
        return count
    return inf

t = int(input())
for _ in range(t):
    a,b,c = map(int,input().split())
    if c < a:
        a,c = c,a

    ans = min(calc1(a,b,c),calc2(a,b,c))
    if ans == inf:
        ans = -1
    print(ans)
0