結果

問題 No.2109 Special Week
ユーザー mobchanmobchan
提出日時 2023-05-04 01:15:22
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 1,598 bytes
コンパイル時間 16,267 ms
コンパイル使用メモリ 168,376 KB
実行使用メモリ 186,836 KB
最終ジャッジ日時 2024-05-01 17:51:20
合計ジャッジ時間 19,402 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
30,208 KB
testcase_01 AC 51 ms
30,048 KB
testcase_02 AC 53 ms
30,080 KB
testcase_03 AC 54 ms
30,200 KB
testcase_04 AC 51 ms
30,200 KB
testcase_05 AC 52 ms
30,208 KB
testcase_06 AC 52 ms
30,192 KB
testcase_07 AC 52 ms
29,952 KB
testcase_08 AC 53 ms
30,208 KB
testcase_09 AC 52 ms
30,080 KB
testcase_10 AC 53 ms
30,208 KB
testcase_11 AC 52 ms
30,208 KB
testcase_12 AC 52 ms
30,080 KB
testcase_13 AC 53 ms
30,208 KB
testcase_14 AC 52 ms
30,200 KB
testcase_15 AC 52 ms
30,200 KB
testcase_16 AC 52 ms
30,208 KB
testcase_17 AC 53 ms
30,208 KB
testcase_18 AC 52 ms
30,080 KB
testcase_19 AC 52 ms
29,952 KB
testcase_20 AC 52 ms
30,080 KB
testcase_21 AC 53 ms
30,208 KB
testcase_22 AC 53 ms
30,208 KB
testcase_23 AC 53 ms
30,080 KB
testcase_24 AC 53 ms
30,208 KB
testcase_25 AC 52 ms
30,080 KB
testcase_26 AC 52 ms
30,080 KB
testcase_27 AC 52 ms
29,952 KB
testcase_28 AC 52 ms
30,080 KB
testcase_29 AC 52 ms
30,080 KB
testcase_30 AC 53 ms
30,080 KB
testcase_31 AC 52 ms
30,080 KB
testcase_32 AC 55 ms
30,200 KB
testcase_33 AC 52 ms
30,080 KB
testcase_34 AC 54 ms
30,080 KB
testcase_35 AC 53 ms
30,320 KB
testcase_36 AC 53 ms
30,200 KB
testcase_37 AC 53 ms
29,952 KB
testcase_38 AC 52 ms
30,200 KB
testcase_39 AC 52 ms
186,836 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (142 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        var input = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var M = input[0];
        var D = input[1];
        var K = input[2];

        var days = new[] { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };

        var list = new List<string>();

        if (D + 7 > days[M - 1])
        {
            for (int i = 0; i < days[M - 1] - D + 1; i++)
            {
                list.Add(M.ToString() + (D + i).ToString());
            }
            for (int i = 0; i < 7 - (days[M - 1] - D + 1); i++)
            {
                if (M == 12)
                {
                    list.Add("010" + (i + 1).ToString());
                }
                else
                {
                    list.Add((M + 1).ToString() + "0" + (i + 1).ToString());
                }
            }
        }
        else
        {
            for (int i = 0; i < 7; i++)
            {
                list.Add(M.ToString() + (D + i).ToString());
            }
        }
        var ss = "";
        var array = new int[10];

        foreach (var item in list)
        {
            ss += item;
            for (int i = 0; i < (4 - item.Length); i++) ss += "0";
        }

        foreach (var item in ss)
            array[item - '0']++;

        var count = 0;
        foreach (var item in array)
        {
            if (item > 0) count++;
        }
        
        if (count >= K) Console.WriteLine("Yes");
        else Console.WriteLine("No");
    }
}
0