結果

問題 No.799 赤黒かーどげぇむ
ユーザー practikovatpractikovat
提出日時 2019-05-22 17:03:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 2,867 ms
コンパイル使用メモリ 74,752 KB
実行使用メモリ 54,260 KB
最終ジャッジ日時 2024-09-17 09:36:33
合計ジャッジ時間 6,086 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,232 KB
testcase_01 AC 117 ms
53,964 KB
testcase_02 AC 115 ms
54,140 KB
testcase_03 AC 102 ms
53,164 KB
testcase_04 AC 113 ms
54,156 KB
testcase_05 AC 117 ms
54,132 KB
testcase_06 AC 112 ms
53,804 KB
testcase_07 AC 101 ms
52,788 KB
testcase_08 AC 113 ms
53,972 KB
testcase_09 AC 110 ms
54,072 KB
testcase_10 AC 97 ms
52,736 KB
testcase_11 AC 104 ms
53,104 KB
testcase_12 AC 115 ms
54,252 KB
testcase_13 AC 108 ms
53,864 KB
testcase_14 AC 115 ms
53,992 KB
testcase_15 AC 100 ms
54,024 KB
testcase_16 AC 115 ms
54,260 KB
testcase_17 AC 113 ms
54,240 KB
testcase_18 AC 114 ms
53,844 KB
testcase_19 AC 117 ms
54,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class CardGame {
	public static void main(String args[]) {
		Scanner scan = new Scanner(System.in);
		int a = scan.nextInt();
		int b = scan.nextInt();
		int c = scan.nextInt();
		int d = scan.nextInt();
		int cnt = 0;

		for(int i = a; i <= b; i++) {
			for(int j = c; j <= d; j++) {
				if(i != j) {
					cnt++;
				}
			}
		}

		System.out.println(cnt);
		return;
	}
}
0