結果

問題 No.2154 あさかつの参加人数
ユーザー kakel-sankakel-san
提出日時 2023-09-05 21:47:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 664 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 3,824 ms
コンパイル使用メモリ 110,136 KB
実行使用メモリ 67,808 KB
最終ジャッジ日時 2024-06-23 17:07:24
合計ジャッジ時間 20,455 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 664 ms
61,696 KB
testcase_01 AC 642 ms
67,808 KB
testcase_02 AC 648 ms
62,080 KB
testcase_03 AC 648 ms
67,668 KB
testcase_04 AC 641 ms
61,952 KB
testcase_05 AC 390 ms
46,128 KB
testcase_06 AC 560 ms
59,308 KB
testcase_07 AC 334 ms
50,940 KB
testcase_08 AC 309 ms
52,488 KB
testcase_09 AC 98 ms
29,696 KB
testcase_10 AC 301 ms
40,448 KB
testcase_11 AC 567 ms
56,644 KB
testcase_12 AC 468 ms
52,464 KB
testcase_13 AC 295 ms
37,632 KB
testcase_14 AC 516 ms
50,560 KB
testcase_15 AC 288 ms
41,088 KB
testcase_16 AC 463 ms
50,176 KB
testcase_17 AC 566 ms
52,736 KB
testcase_18 AC 592 ms
55,424 KB
testcase_19 AC 62 ms
24,960 KB
testcase_20 AC 447 ms
49,792 KB
testcase_21 AC 85 ms
28,800 KB
testcase_22 AC 150 ms
34,944 KB
testcase_23 AC 539 ms
53,504 KB
testcase_24 AC 617 ms
57,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;
class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, m) = (c[0], c[1]);
        var map = NArr(m);
        var cum = new int[n + 1];
        for (var i = 0; i < m; ++i)
        {
            ++cum[n - map[i][0]];
            --cum[n - map[i][1] + 1];
        }
        for (var i = 1; i < cum.Length; ++i) cum[i] += cum[i - 1];
        WriteLine(string.Join("\n", cum.Take(n)));
    }
}
0