結果

問題 No.2154 あさかつの参加人数
ユーザー mobchanmobchan
提出日時 2023-05-02 07:37:12
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 1,889 ms / 2,000 ms
コード長 707 bytes
コンパイル時間 15,356 ms
コンパイル使用メモリ 165,120 KB
実行使用メモリ 211,200 KB
最終ジャッジ日時 2024-10-02 12:21:49
合計ジャッジ時間 47,171 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,857 ms
56,176 KB
testcase_01 AC 1,816 ms
55,808 KB
testcase_02 AC 1,786 ms
55,808 KB
testcase_03 AC 1,843 ms
56,064 KB
testcase_04 AC 1,889 ms
56,448 KB
testcase_05 AC 239 ms
53,888 KB
testcase_06 AC 942 ms
54,784 KB
testcase_07 AC 1,154 ms
55,284 KB
testcase_08 AC 1,259 ms
55,296 KB
testcase_09 AC 835 ms
44,408 KB
testcase_10 AC 1,036 ms
55,040 KB
testcase_11 AC 1,594 ms
55,936 KB
testcase_12 AC 1,094 ms
55,424 KB
testcase_13 AC 502 ms
54,400 KB
testcase_14 AC 1,060 ms
54,784 KB
testcase_15 AC 1,209 ms
55,424 KB
testcase_16 AC 1,220 ms
55,680 KB
testcase_17 AC 1,100 ms
55,164 KB
testcase_18 AC 1,389 ms
55,296 KB
testcase_19 AC 223 ms
37,632 KB
testcase_20 AC 1,349 ms
55,416 KB
testcase_21 AC 788 ms
41,600 KB
testcase_22 AC 1,464 ms
53,488 KB
testcase_23 AC 1,386 ms
55,548 KB
testcase_24 AC 1,599 ms
211,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (105 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.Linq;

class Program
{
    static void Main(string[] args)
    {
        var input = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var N = input[0];
        var M = input[1];
        var days = new int[N + 1];

        for (int i = 1; i <= M; i++)
        {
            var temp = Console.ReadLine().Split().Select(int.Parse).ToArray();
            var L = temp[0];
            var R = temp[1];
            days[N - L]++;
            days[N - R + 1]--;
        }

        for (int i = 1; i < N; i++)
        {
            days[i] += days[i - 1];
        }


        for (int i = 0; i < N; i++)
        {
            Console.WriteLine(days[i]);
        }
    }
}
0