結果

問題 No.773 コンテスト
ユーザー yukiyuki
提出日時 2020-08-20 01:52:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 830 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 76,688 KB
実行使用メモリ 41,736 KB
最終ジャッジ日時 2024-10-12 13:24:09
合計ジャッジ時間 6,425 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,584 KB
testcase_01 AC 123 ms
41,452 KB
testcase_02 AC 129 ms
41,664 KB
testcase_03 AC 130 ms
41,096 KB
testcase_04 AC 126 ms
40,980 KB
testcase_05 AC 128 ms
41,464 KB
testcase_06 AC 128 ms
41,584 KB
testcase_07 AC 122 ms
41,736 KB
testcase_08 AC 122 ms
41,196 KB
testcase_09 AC 123 ms
41,324 KB
testcase_10 AC 113 ms
40,136 KB
testcase_11 AC 111 ms
39,996 KB
testcase_12 AC 125 ms
41,348 KB
testcase_13 AC 130 ms
41,360 KB
testcase_14 AC 130 ms
41,360 KB
testcase_15 AC 127 ms
41,392 KB
testcase_16 AC 123 ms
41,284 KB
testcase_17 AC 131 ms
40,960 KB
testcase_18 AC 127 ms
41,092 KB
testcase_19 AC 127 ms
41,320 KB
testcase_20 AC 126 ms
41,408 KB
testcase_21 AC 126 ms
41,196 KB
testcase_22 AC 125 ms
40,972 KB
testcase_23 AC 127 ms
41,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner in = new Scanner(System.in);
        // 合宿の日程
        List<Integer> camp = Arrays.asList(23, 24, 25);
        final int camp_length = 3;
        
        int start = in.nextInt();
        int end = in.nextInt();
        List<Integer> trip = new ArrayList<>();
        
        // 旅行の日程
        for(int i=start; i<=end; i++){
            trip.add(i);
        }
        
        // 日程重複の確認
        int count = 0;
        int N = (camp_length > trip.size()) ? trip.size() : camp_length;

        for(int a : trip){
            if(camp.contains(a)){
                count++;
            }                
        }
        System.out.println(camp_length - count);
        
    }
}
0