結果

問題 No.1412 Super Ryuo
ユーザー kept1994kept1994
提出日時 2022-04-29 04:28:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 239 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 53,620 KB
最終ジャッジ日時 2024-06-28 12:06:25
合計ジャッジ時間 1,426 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,028 KB
testcase_01 AC 37 ms
52,968 KB
testcase_02 AC 38 ms
52,164 KB
testcase_03 AC 38 ms
52,328 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
52,496 KB
testcase_07 AC 36 ms
52,452 KB
testcase_08 AC 36 ms
52,628 KB
testcase_09 AC 37 ms
53,232 KB
testcase_10 AC 37 ms
52,072 KB
testcase_11 AC 37 ms
52,760 KB
testcase_12 AC 36 ms
52,472 KB
testcase_13 AC 36 ms
52,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

MOD = 998244353

def main():
    a,b,c,d=map(int, input().split())
    if abs(a - c) + abs(b - d) <= 3:
        print(1)
    else:
        print(2)
    return

    

if __name__ == '__main__':
    main()
0