結果

問題 No.799 赤黒かーどげぇむ
コンテスト
ユーザー GodNegoto
提出日時 2019-11-11 15:50:39
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 426 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,534 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 42,104 KB
最終ジャッジ日時 2026-04-04 17:29:19
合計ジャッジ時間 4,408 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge5_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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