結果

問題 No.2154 あさかつの参加人数
ユーザー mobchanmobchan
提出日時 2023-05-02 02:03:25
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 1,776 ms / 2,000 ms
コード長 783 bytes
コンパイル時間 11,619 ms
コンパイル使用メモリ 168,040 KB
実行使用メモリ 211,048 KB
最終ジャッジ日時 2024-12-09 07:36:48
合計ジャッジ時間 52,537 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,753 ms
56,192 KB
testcase_01 AC 1,760 ms
55,808 KB
testcase_02 AC 1,776 ms
55,808 KB
testcase_03 AC 1,751 ms
55,936 KB
testcase_04 AC 1,740 ms
55,808 KB
testcase_05 AC 233 ms
54,272 KB
testcase_06 AC 883 ms
55,168 KB
testcase_07 AC 1,106 ms
55,420 KB
testcase_08 AC 1,205 ms
55,680 KB
testcase_09 AC 840 ms
44,800 KB
testcase_10 AC 982 ms
55,168 KB
testcase_11 AC 1,551 ms
56,060 KB
testcase_12 AC 1,083 ms
55,296 KB
testcase_13 AC 473 ms
54,528 KB
testcase_14 AC 1,043 ms
55,424 KB
testcase_15 AC 1,185 ms
55,424 KB
testcase_16 AC 1,204 ms
55,424 KB
testcase_17 AC 1,112 ms
55,292 KB
testcase_18 AC 1,387 ms
55,552 KB
testcase_19 AC 222 ms
37,760 KB
testcase_20 AC 1,309 ms
55,680 KB
testcase_21 AC 742 ms
41,728 KB
testcase_22 AC 1,411 ms
53,608 KB
testcase_23 AC 1,328 ms
55,552 KB
testcase_24 AC 1,629 ms
211,048 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 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 N = input[0];
        var M = input[1];
        var days = new int[N + 2];

        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[L + 1]--;
            days[R]++;
        }

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

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