結果

問題 No.2092 Conjugation
ユーザー mobchanmobchan
提出日時 2023-05-04 06:12:16
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 12,476 ms
コンパイル使用メモリ 169,648 KB
実行使用メモリ 192,144 KB
最終ジャッジ日時 2024-05-01 19:47:14
合計ジャッジ時間 19,649 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
30,720 KB
testcase_01 AC 52 ms
30,592 KB
testcase_02 AC 56 ms
30,464 KB
testcase_03 AC 51 ms
30,592 KB
testcase_04 AC 49 ms
30,464 KB
testcase_05 AC 50 ms
30,592 KB
testcase_06 AC 50 ms
30,592 KB
testcase_07 AC 355 ms
32,000 KB
testcase_08 AC 389 ms
41,472 KB
testcase_09 AC 346 ms
37,760 KB
testcase_10 AC 366 ms
38,272 KB
testcase_11 AC 355 ms
38,528 KB
testcase_12 AC 363 ms
37,376 KB
testcase_13 AC 346 ms
35,840 KB
testcase_14 AC 351 ms
35,584 KB
testcase_15 AC 347 ms
37,376 KB
testcase_16 AC 368 ms
43,776 KB
testcase_17 AC 365 ms
47,360 KB
testcase_18 AC 366 ms
45,696 KB
testcase_19 AC 75 ms
192,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (89 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 N = int.Parse(Console.ReadLine());
        var A = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var max = A.Max();
        var array = new int[max + 2];
        array[0] = N;

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

        for (int i = 1; i < max + 2; i++)
        {
            array[i] += array[i - 1];
        }

        for (int i = 1; i < max + 1; i++)
        {
            Console.Write(array[i]);
            if (i < max) Console.Write(" ");
        }

        Console.WriteLine();
    }
}
0