結果

問題 No.799 赤黒かーどげぇむ
ユーザー tentententen
提出日時 2020-11-12 11:46:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 414 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 75,224 KB
実行使用メモリ 55,908 KB
最終ジャッジ日時 2024-07-22 19:10:02
合計ジャッジ時間 6,000 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
54,108 KB
testcase_01 AC 135 ms
54,000 KB
testcase_02 AC 138 ms
53,988 KB
testcase_03 AC 139 ms
53,948 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 140 ms
53,956 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 125 ms
52,756 KB
testcase_15 AC 135 ms
54,004 KB
testcase_16 AC 137 ms
53,784 KB
testcase_17 AC 140 ms
54,200 KB
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        int c = sc.nextInt();
        int d = sc.nextInt();
        int ans = (b - a + 1) * (d - c + 1);
        ans -= Math.max(0, b - c + 1);
        ans -= Math.max(0, a - d + 1);
        System.out.println(ans);
    }
}
0