結果

問題 No.1412 Super Ryuo
ユーザー tentententen
提出日時 2021-03-01 12:32:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 413 bytes
コンパイル時間 4,437 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 41,420 KB
最終ジャッジ日時 2024-10-03 00:49:51
合計ジャッジ時間 5,286 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,316 KB
testcase_01 AC 123 ms
41,288 KB
testcase_02 AC 123 ms
41,156 KB
testcase_03 AC 122 ms
41,288 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 125 ms
41,312 KB
testcase_07 AC 122 ms
41,372 KB
testcase_08 AC 124 ms
41,204 KB
testcase_09 AC 123 ms
41,340 KB
testcase_10 AC 122 ms
41,420 KB
testcase_11 AC 124 ms
41,244 KB
testcase_12 AC 134 ms
41,312 KB
testcase_13 AC 124 ms
41,324 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 {
            System.out.println(2);
        }
    }
}
0