結果

問題 No.2109 Special Week
ユーザー YGBKYGBK
提出日時 2022-11-20 02:26:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 1,455 bytes
コンパイル時間 2,712 ms
コンパイル使用メモリ 88,020 KB
実行使用メモリ 55,684 KB
最終ジャッジ日時 2024-09-21 06:17:49
合計ジャッジ時間 13,510 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
54,980 KB
testcase_01 AC 201 ms
54,940 KB
testcase_02 AC 202 ms
54,856 KB
testcase_03 AC 199 ms
55,160 KB
testcase_04 AC 202 ms
55,260 KB
testcase_05 AC 190 ms
54,984 KB
testcase_06 AC 201 ms
54,972 KB
testcase_07 AC 198 ms
55,048 KB
testcase_08 AC 199 ms
54,508 KB
testcase_09 AC 204 ms
54,604 KB
testcase_10 AC 202 ms
54,672 KB
testcase_11 AC 204 ms
54,808 KB
testcase_12 AC 198 ms
54,788 KB
testcase_13 AC 201 ms
54,756 KB
testcase_14 AC 192 ms
55,684 KB
testcase_15 AC 199 ms
55,144 KB
testcase_16 AC 203 ms
54,748 KB
testcase_17 AC 200 ms
54,596 KB
testcase_18 AC 198 ms
55,128 KB
testcase_19 AC 201 ms
54,996 KB
testcase_20 AC 196 ms
54,788 KB
testcase_21 AC 190 ms
54,900 KB
testcase_22 AC 187 ms
54,992 KB
testcase_23 AC 199 ms
54,764 KB
testcase_24 AC 186 ms
54,828 KB
testcase_25 AC 189 ms
54,992 KB
testcase_26 AC 200 ms
55,140 KB
testcase_27 AC 206 ms
55,056 KB
testcase_28 AC 199 ms
55,188 KB
testcase_29 AC 204 ms
55,008 KB
testcase_30 AC 202 ms
54,920 KB
testcase_31 AC 195 ms
55,068 KB
testcase_32 AC 202 ms
55,176 KB
testcase_33 AC 196 ms
54,772 KB
testcase_34 AC 204 ms
55,120 KB
testcase_35 AC 200 ms
54,796 KB
testcase_36 AC 190 ms
54,976 KB
testcase_37 AC 207 ms
54,536 KB
testcase_38 AC 206 ms
54,804 KB
testcase_39 AC 200 ms
54,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.time.LocalDate;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.List;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws NumberFormatException, ParseException {
		
		Scanner sc =  new Scanner(System.in);
		
		
		//入力
		String m = sc.next();
		String d = sc.next();
		int k = Integer.parseInt(sc.next());
		List<Boolean> list = new ArrayList<>();
		for(int i=0;i<10;i++) {
			list.add(false);
		}
		sc.close();
		
		List<String> week = new ArrayList<>();
		
		//日付生成
		Calendar c = Calendar.getInstance();
		
		
		SimpleDateFormat df = new SimpleDateFormat("MM/dd");
		SimpleDateFormat tmp = new SimpleDateFormat("yyyy-MM-dd");
		Date  date=  tmp.parse(LocalDate.of(2022, Integer.parseInt(m),Integer.parseInt(d)).toString());
		c.setTime(date);
		week.add(df.format(c.getTime()));
		for(int i = 1;i <= 6;i++) {
			c.add(Calendar.DAY_OF_MONTH, 1);
			week.add(df.format(c.getTime()));
		}
		
		for(String day : week) {
			for(int i=0;i<day.length();i++) {
				String s=  String.valueOf(day.charAt(i));
				if("/".equals(s)) continue;
				int num = Integer.parseInt(s);
				if(list.get(num)) continue;
				list.set(num, true);
			}
		}
		
		int sum = 0;
		for(int i=0;i<list.size();i++) {
			if(list.get(i)) sum++;
		}
		
		System.out.println( (sum >= k)? "Yes" : "No");
	}
}
0