結果

問題 No.1412 Super Ryuo
ユーザー tentententen
提出日時 2021-03-01 12:33:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 488 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 73,660 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-10-03 00:49:56
合計ジャッジ時間 4,538 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,424 KB
testcase_01 AC 130 ms
41,272 KB
testcase_02 AC 130 ms
41,228 KB
testcase_03 AC 134 ms
41,272 KB
testcase_04 AC 131 ms
41,436 KB
testcase_05 AC 132 ms
41,452 KB
testcase_06 AC 131 ms
41,436 KB
testcase_07 AC 131 ms
41,352 KB
testcase_08 AC 132 ms
41,448 KB
testcase_09 AC 132 ms
41,260 KB
testcase_10 AC 139 ms
41,540 KB
testcase_11 AC 132 ms
41,460 KB
testcase_12 AC 131 ms
41,216 KB
testcase_13 AC 131 ms
41,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long a = sc.nextInt();
        long b = sc.nextInt();
        long c = sc.nextInt();
        long d = sc.nextInt();
        if (Math.abs(a - c) + Math.abs(b - d) <= 3) {
            System.out.println(1);
        } else if (a == c || b == d) {
            System.out.println(1);
        } else {
            System.out.println(2); 
        }
    }
}
0