結果

問題 No.773 コンテスト
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-19 21:24:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 719 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 74,636 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-10-12 20:25:15
合計ジャッジ時間 6,111 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,908 KB
testcase_01 AC 128 ms
53,880 KB
testcase_02 AC 129 ms
53,832 KB
testcase_03 AC 129 ms
53,880 KB
testcase_04 AC 130 ms
54,132 KB
testcase_05 AC 127 ms
53,984 KB
testcase_06 AC 129 ms
54,072 KB
testcase_07 AC 129 ms
54,004 KB
testcase_08 AC 131 ms
54,036 KB
testcase_09 AC 128 ms
53,960 KB
testcase_10 AC 127 ms
53,784 KB
testcase_11 AC 126 ms
53,928 KB
testcase_12 AC 125 ms
53,932 KB
testcase_13 AC 126 ms
54,108 KB
testcase_14 AC 127 ms
53,960 KB
testcase_15 AC 120 ms
53,360 KB
testcase_16 AC 125 ms
54,108 KB
testcase_17 AC 126 ms
53,960 KB
testcase_18 AC 115 ms
52,748 KB
testcase_19 AC 123 ms
53,652 KB
testcase_20 AC 126 ms
54,056 KB
testcase_21 AC 122 ms
54,044 KB
testcase_22 AC 124 ms
53,988 KB
testcase_23 AC 131 ms
54,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        solve(a,b);
    }
    
    static void solve(int a, int b) {
        boolean [] boo = new boolean [32];
        Arrays.fill(boo, false);
        for(int i=a; i<=b; i++) {
            boo[i] = true;
        }
        int ans = count(boo);
        System.out.println(ans);
    }
    
    static int count(boolean[]boo) {
        int ans = 0;
        final int[] ARRAY = {23, 24, 25};
        for(int i=0; i<ARRAY.length; i++) {
            if(!boo[ARRAY[i]]) ans++;
        }
        return ans;
    }

}
0