結果

問題 No.2092 Conjugation
ユーザー mobchanmobchan
提出日時 2023-05-04 06:12:16
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 409 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 13,902 ms
コンパイル使用メモリ 167,896 KB
実行使用メモリ 191,572 KB
最終ジャッジ日時 2024-11-22 01:59:11
合計ジャッジ時間 20,994 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
30,464 KB
testcase_01 AC 58 ms
30,308 KB
testcase_02 AC 59 ms
30,464 KB
testcase_03 AC 59 ms
30,464 KB
testcase_04 AC 59 ms
30,464 KB
testcase_05 AC 64 ms
30,464 KB
testcase_06 AC 61 ms
30,592 KB
testcase_07 AC 377 ms
32,000 KB
testcase_08 AC 407 ms
41,520 KB
testcase_09 AC 397 ms
37,732 KB
testcase_10 AC 402 ms
38,144 KB
testcase_11 AC 389 ms
38,400 KB
testcase_12 AC 405 ms
37,504 KB
testcase_13 AC 382 ms
35,840 KB
testcase_14 AC 397 ms
35,456 KB
testcase_15 AC 395 ms
37,376 KB
testcase_16 AC 393 ms
43,520 KB
testcase_17 AC 409 ms
47,484 KB
testcase_18 AC 398 ms
45,440 KB
testcase_19 AC 82 ms
191,572 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 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