結果

問題 No.773 コンテスト
ユーザー YamaKasaYamaKasa
提出日時 2019-02-02 23:01:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 1,965 ms
コンパイル使用メモリ 73,992 KB
実行使用メモリ 54,184 KB
最終ジャッジ日時 2024-07-06 11:34:15
合計ジャッジ時間 5,728 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
54,020 KB
testcase_01 AC 110 ms
53,624 KB
testcase_02 AC 109 ms
53,824 KB
testcase_03 AC 114 ms
53,992 KB
testcase_04 AC 108 ms
53,728 KB
testcase_05 AC 112 ms
53,840 KB
testcase_06 AC 98 ms
52,516 KB
testcase_07 AC 107 ms
53,872 KB
testcase_08 AC 111 ms
53,844 KB
testcase_09 AC 108 ms
52,944 KB
testcase_10 AC 107 ms
53,512 KB
testcase_11 AC 100 ms
52,372 KB
testcase_12 AC 108 ms
53,680 KB
testcase_13 AC 110 ms
53,532 KB
testcase_14 AC 110 ms
53,928 KB
testcase_15 AC 116 ms
53,956 KB
testcase_16 AC 114 ms
54,184 KB
testcase_17 AC 111 ms
53,696 KB
testcase_18 AC 100 ms
52,348 KB
testcase_19 AC 99 ms
52,628 KB
testcase_20 AC 102 ms
52,772 KB
testcase_21 AC 109 ms
53,920 KB
testcase_22 AC 113 ms
53,492 KB
testcase_23 AC 114 ms
53,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int A = sc.nextInt();
		int B = sc.nextInt();
		sc.close();
		int []d = {23, 24, 25};
		int cnt = 0;
		for(int i : d) {
			if(!(i >= A && i <= B)) {
				cnt++;
			}
		}
		System.out.println(cnt);
	}
}
0