結果

問題 No.2213 Neq Move
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-02-10 23:08:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 66,304 KB
最終ジャッジ日時 2024-07-07 17:09:14
合計ジャッジ時間 1,017 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    a,b,c,d = map(int,input().split())

    if a < b:
        a,b = b,a
        c,d = d,c

    if c > d:
        if c >= a and d >= b:
            return c+d-a-b
        if c >= a and d <= b:
            return d+1+c-a
        
        if b > 1:
            return 3+c-1+d
        else:
            return 4+c-1+d
    else:
        if d >= b:
            return 1+c+d-b
        else:
            return 3+d-1+c


t = int(input())
for _ in range(t):
    print(solve())
0