結果

問題 No.799 赤黒かーどげぇむ
ユーザー GodNegotoGodNegoto
提出日時 2019-11-11 15:50:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 3,287 ms
コンパイル使用メモリ 73,728 KB
実行使用メモリ 41,088 KB
最終ジャッジ日時 2024-09-15 05:16:03
合計ジャッジ時間 6,847 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,056 KB
testcase_01 AC 134 ms
40,776 KB
testcase_02 AC 117 ms
39,828 KB
testcase_03 AC 120 ms
39,996 KB
testcase_04 AC 130 ms
40,996 KB
testcase_05 AC 130 ms
40,812 KB
testcase_06 AC 129 ms
40,848 KB
testcase_07 AC 130 ms
40,836 KB
testcase_08 AC 129 ms
41,040 KB
testcase_09 AC 130 ms
41,088 KB
testcase_10 AC 134 ms
40,944 KB
testcase_11 AC 122 ms
39,280 KB
testcase_12 AC 131 ms
40,560 KB
testcase_13 AC 132 ms
40,388 KB
testcase_14 AC 130 ms
40,984 KB
testcase_15 AC 131 ms
40,696 KB
testcase_16 AC 130 ms
40,580 KB
testcase_17 AC 129 ms
40,804 KB
testcase_18 AC 131 ms
40,400 KB
testcase_19 AC 129 ms
41,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.Scanner;

public class sample7 {

	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 cnt = 0;
		
		for(int i = A;  i <= B; i++){
			for(int j = C; j <= D; j++) {
				if(i != j) {
					cnt = cnt + 1;
				}
				else {
				}
			}
		}
		System.out.println(cnt);
	}
}
0