結果

問題 No.799 赤黒かーどげぇむ
ユーザー Beat7501Beat7501
提出日時 2019-03-28 17:32:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 2,489 ms
コンパイル使用メモリ 75,184 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-10-13 07:34:19
合計ジャッジ時間 5,886 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
53,968 KB
testcase_01 AC 122 ms
54,084 KB
testcase_02 AC 127 ms
54,260 KB
testcase_03 AC 121 ms
53,852 KB
testcase_04 AC 115 ms
52,840 KB
testcase_05 AC 125 ms
53,876 KB
testcase_06 AC 121 ms
54,220 KB
testcase_07 AC 123 ms
53,956 KB
testcase_08 AC 120 ms
53,996 KB
testcase_09 AC 124 ms
54,036 KB
testcase_10 AC 119 ms
54,056 KB
testcase_11 AC 122 ms
54,084 KB
testcase_12 AC 125 ms
53,972 KB
testcase_13 AC 120 ms
53,144 KB
testcase_14 AC 105 ms
52,684 KB
testcase_15 AC 125 ms
53,948 KB
testcase_16 AC 125 ms
54,220 KB
testcase_17 AC 122 ms
53,848 KB
testcase_18 AC 124 ms
54,032 KB
testcase_19 AC 110 ms
53,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Yuki799{
	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 aka = b-a+1;
		int kuro = d-c+1;
		int dab = 0;
		if((a < c && d < b)||(c < a && b < d)){
			if(a < c && d < b){
				dab = d-c+1;
			}else{
				dab = b-a+1;
			}
		}else{
			dab = a<c?Math.max(0,b-c+1):Math.max(0,d-a+1);
		}
		System.out.println(aka*kuro-dab);
	}
}
0