結果

問題 No.2092 Conjugation
ユーザー kakel-sankakel-san
提出日時 2022-10-07 21:26:00
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 625 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 111,972 KB
実行使用メモリ 43,732 KB
最終ジャッジ日時 2024-06-12 05:53:58
合計ジャッジ時間 3,599 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
25,520 KB
testcase_01 AC 28 ms
25,260 KB
testcase_02 AC 27 ms
25,308 KB
testcase_03 AC 26 ms
25,188 KB
testcase_04 AC 28 ms
23,352 KB
testcase_05 AC 28 ms
27,184 KB
testcase_06 AC 28 ms
25,312 KB
testcase_07 AC 39 ms
27,664 KB
testcase_08 AC 69 ms
34,948 KB
testcase_09 AC 58 ms
30,500 KB
testcase_10 AC 65 ms
36,328 KB
testcase_11 AC 63 ms
34,712 KB
testcase_12 AC 60 ms
30,320 KB
testcase_13 AC 51 ms
29,684 KB
testcase_14 AC 49 ms
29,308 KB
testcase_15 AC 54 ms
32,664 KB
testcase_16 AC 81 ms
36,680 KB
testcase_17 AC 85 ms
43,732 KB
testcase_18 AC 83 ms
41,948 KB
testcase_19 AC 46 ms
27,312 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 void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        var res = new int[a[0]];
        var pos = n - 1;
        for (var i = 0; i < res.Length; ++i)
        {
            while (a[pos] <= i) --pos;
            res[i] = pos + 1;
        }
        WriteLine(string.Join(" ", res));
    }
}
0