結果

問題 No.2109 Special Week
ユーザー Maeda
提出日時 2025-04-14 16:42:08
言語 C#
(.NET 8.0.404)
結果
WA  
実行時間 -
コード長 374 bytes
コンパイル時間 9,861 ms
コンパイル使用メモリ 170,112 KB
実行使用メモリ 188,388 KB
最終ジャッジ日時 2025-04-14 16:42:22
合計ジャッジ時間 13,336 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 37
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (117 ミリ秒)。
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

    class Program
    {
        static void Main(string[] args)
        {
            int[] dayList = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; 
            int[] numList = new int[10];
            int[] n = Array.ConvertAll(Console.ReadLine().Split(' '), num => int.Parse(num.ToString()));

        }
        //https://yukicoder.me/problems/no/2109
        
    }
0