結果

問題 No.773 コンテスト
ユーザー tentententen
提出日時 2020-12-09 18:16:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 73,944 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-09-19 01:21:12
合計ジャッジ時間 5,484 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
54,020 KB
testcase_01 AC 132 ms
53,952 KB
testcase_02 AC 133 ms
54,264 KB
testcase_03 AC 121 ms
54,052 KB
testcase_04 AC 132 ms
54,056 KB
testcase_05 AC 127 ms
54,128 KB
testcase_06 AC 119 ms
54,096 KB
testcase_07 AC 114 ms
53,916 KB
testcase_08 AC 120 ms
54,100 KB
testcase_09 AC 113 ms
54,024 KB
testcase_10 AC 116 ms
53,916 KB
testcase_11 AC 106 ms
52,768 KB
testcase_12 AC 103 ms
52,996 KB
testcase_13 AC 117 ms
53,988 KB
testcase_14 AC 107 ms
52,948 KB
testcase_15 AC 117 ms
54,076 KB
testcase_16 AC 102 ms
53,092 KB
testcase_17 AC 112 ms
54,020 KB
testcase_18 AC 114 ms
53,724 KB
testcase_19 AC 111 ms
54,056 KB
testcase_20 AC 112 ms
53,800 KB
testcase_21 AC 106 ms
52,940 KB
testcase_22 AC 111 ms
53,740 KB
testcase_23 AC 110 ms
53,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        int count = 0;
        for (int i = 23; i <= 25; i++) {
            if (i < a || i > b) {
                count++;
            }
        }
        System.out.println(count);
    }
}
0