結果

問題 No.2109 Special Week
ユーザー shojin_proshojin_pro
提出日時 2022-10-28 22:06:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 795 bytes
コンパイル時間 2,817 ms
コンパイル使用メモリ 78,528 KB
実行使用メモリ 43,908 KB
最終ジャッジ日時 2024-07-06 01:15:44
合計ジャッジ時間 13,364 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 219 ms
43,372 KB
testcase_01 AC 234 ms
43,500 KB
testcase_02 AC 236 ms
43,224 KB
testcase_03 AC 234 ms
43,796 KB
testcase_04 AC 230 ms
43,392 KB
testcase_05 AC 237 ms
43,408 KB
testcase_06 AC 237 ms
43,192 KB
testcase_07 AC 238 ms
43,520 KB
testcase_08 AC 226 ms
43,280 KB
testcase_09 AC 238 ms
43,492 KB
testcase_10 AC 236 ms
43,356 KB
testcase_11 AC 242 ms
43,740 KB
testcase_12 AC 235 ms
43,192 KB
testcase_13 AC 232 ms
43,412 KB
testcase_14 AC 239 ms
43,468 KB
testcase_15 AC 234 ms
43,224 KB
testcase_16 AC 225 ms
43,352 KB
testcase_17 AC 226 ms
43,356 KB
testcase_18 AC 234 ms
43,740 KB
testcase_19 AC 235 ms
43,488 KB
testcase_20 AC 223 ms
43,280 KB
testcase_21 AC 237 ms
43,360 KB
testcase_22 AC 220 ms
43,136 KB
testcase_23 AC 236 ms
43,516 KB
testcase_24 AC 224 ms
43,320 KB
testcase_25 AC 242 ms
43,908 KB
testcase_26 AC 231 ms
43,600 KB
testcase_27 AC 239 ms
43,748 KB
testcase_28 AC 237 ms
43,868 KB
testcase_29 AC 237 ms
43,564 KB
testcase_30 AC 226 ms
43,436 KB
testcase_31 AC 235 ms
43,772 KB
testcase_32 AC 240 ms
43,332 KB
testcase_33 AC 235 ms
43,636 KB
testcase_34 AC 246 ms
43,732 KB
testcase_35 AC 239 ms
43,372 KB
testcase_36 AC 237 ms
43,260 KB
testcase_37 AC 238 ms
43,192 KB
testcase_38 AC 241 ms
43,564 KB
testcase_39 AC 236 ms
43,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.text.SimpleDateFormat;
import java.sql.Timestamp;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        String start = String.format("%02d", sc.nextInt())+String.format("%02d", sc.nextInt());
        int K = sc.nextInt();
        SimpleDateFormat sdf = new SimpleDateFormat("MMdd");
        Calendar cal = Calendar.getInstance();
        cal.setTime(sdf.parse(start));
        HashSet<Character> set = new HashSet<>();
        for(int i = 0; i < 7; i++){
            for(char c : sdf.format(cal.getTime()).toCharArray()){
                set.add(c);
            }
            cal.add(Calendar.DATE, 1);
        }
        System.out.println(set.size() >= K ? "Yes" : "No");
    }
}
0