結果

問題 No.2154 あさかつの参加人数
ユーザー mobchanmobchan
提出日時 2023-05-02 02:03:25
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 1,823 ms / 2,000 ms
コード長 783 bytes
コンパイル時間 15,881 ms
コンパイル使用メモリ 164,624 KB
実行使用メモリ 210,376 KB
最終ジャッジ日時 2024-04-30 22:26:28
合計ジャッジ時間 42,627 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,757 ms
55,680 KB
testcase_01 AC 1,606 ms
55,808 KB
testcase_02 AC 1,636 ms
55,936 KB
testcase_03 AC 1,823 ms
56,064 KB
testcase_04 AC 1,608 ms
55,808 KB
testcase_05 AC 213 ms
53,888 KB
testcase_06 AC 832 ms
55,168 KB
testcase_07 AC 1,016 ms
55,424 KB
testcase_08 AC 1,150 ms
55,420 KB
testcase_09 AC 764 ms
44,672 KB
testcase_10 AC 930 ms
55,164 KB
testcase_11 AC 1,581 ms
55,936 KB
testcase_12 AC 1,027 ms
55,296 KB
testcase_13 AC 452 ms
54,508 KB
testcase_14 AC 963 ms
55,168 KB
testcase_15 AC 1,099 ms
55,424 KB
testcase_16 AC 1,273 ms
55,424 KB
testcase_17 AC 1,071 ms
54,912 KB
testcase_18 AC 1,232 ms
55,680 KB
testcase_19 AC 205 ms
37,632 KB
testcase_20 AC 1,251 ms
55,548 KB
testcase_21 AC 736 ms
41,964 KB
testcase_22 AC 1,344 ms
53,888 KB
testcase_23 AC 1,245 ms
55,408 KB
testcase_24 AC 1,495 ms
210,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (119 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