結果

問題 No.2092 Conjugation
ユーザー bluemeganebluemegane
提出日時 2022-10-08 06:53:59
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 692 bytes
コンパイル時間 3,748 ms
コンパイル使用メモリ 113,908 KB
実行使用メモリ 42,388 KB
最終ジャッジ日時 2024-06-22 03:51:22
合計ジャッジ時間 6,415 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,140 KB
testcase_01 AC 26 ms
25,020 KB
testcase_02 AC 27 ms
24,744 KB
testcase_03 AC 25 ms
24,768 KB
testcase_04 AC 26 ms
24,876 KB
testcase_05 AC 25 ms
24,876 KB
testcase_06 AC 25 ms
25,004 KB
testcase_07 AC 38 ms
26,044 KB
testcase_08 AC 69 ms
37,804 KB
testcase_09 AC 54 ms
31,292 KB
testcase_10 AC 58 ms
33,308 KB
testcase_11 AC 58 ms
35,524 KB
testcase_12 AC 54 ms
31,104 KB
testcase_13 AC 51 ms
32,444 KB
testcase_14 AC 51 ms
29,876 KB
testcase_15 AC 55 ms
30,924 KB
testcase_16 AC 78 ms
39,904 KB
testcase_17 AC 82 ms
42,388 KB
testcase_18 AC 82 ms
38,944 KB
testcase_19 AC 45 ms
27,876 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System.Collections.Generic;
using System.Linq;
using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, long.Parse);
        getAns(n, a);
    }
    static void getAns(int n, long[] a)
    {
        var b = new int[100001];
        foreach (var x in a) b[x]++;
        var ans = new long[a[0]];
        var s = b.Sum();
        ans[0] = s;
        for (int i = 1; i < a[0]; i++)
        {
            ans[i] = ans[i - 1] - b[i];
        }
        Console.WriteLine(string.Join(" ", ans));
    }
}
0