結果

問題 No.773 コンテスト
ユーザー masamasa
提出日時 2019-01-11 11:26:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 3,848 ms
コンパイル使用メモリ 74,652 KB
実行使用メモリ 54,136 KB
最終ジャッジ日時 2024-07-06 11:29:05
合計ジャッジ時間 5,661 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,168 KB
testcase_01 AC 105 ms
52,808 KB
testcase_02 AC 116 ms
53,840 KB
testcase_03 AC 122 ms
53,676 KB
testcase_04 AC 118 ms
53,896 KB
testcase_05 AC 110 ms
53,736 KB
testcase_06 AC 124 ms
53,928 KB
testcase_07 AC 121 ms
54,064 KB
testcase_08 AC 127 ms
53,912 KB
testcase_09 AC 122 ms
53,860 KB
testcase_10 AC 120 ms
53,768 KB
testcase_11 AC 114 ms
53,176 KB
testcase_12 AC 114 ms
53,848 KB
testcase_13 AC 110 ms
52,964 KB
testcase_14 AC 120 ms
53,924 KB
testcase_15 AC 127 ms
53,932 KB
testcase_16 AC 124 ms
53,760 KB
testcase_17 AC 119 ms
53,932 KB
testcase_18 AC 127 ms
54,116 KB
testcase_19 AC 127 ms
53,920 KB
testcase_20 AC 123 ms
54,056 KB
testcase_21 AC 106 ms
52,940 KB
testcase_22 AC 126 ms
54,136 KB
testcase_23 AC 128 ms
53,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.BigDecimal;

public class Main {
    public static void main(String[] args) throws Exception {
        // Your code here!
        Scanner sc = new Scanner(System.in);
        int dayBefore = sc.nextInt();
        int dayAfter  = sc.nextInt();
        int[] campDay = {23,24,25};
        int answer    = campDay.length; 
         
        if (23 >= dayBefore && 25 <= dayAfter) {
            System.out.println(0);
            System.exit(0);
        }
        
        for (int day : campDay) {
            if (!(day < dayBefore) && !(day > dayAfter)) {
                answer--;
            }
        }
        
        System.out.println(answer);
    }
}
0