結果

問題 No.2092 Conjugation
ユーザー hiragnhiragn
提出日時 2022-11-30 12:24:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 316 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,276 KB
最終ジャッジ日時 2024-10-07 09:08:23
合計ジャッジ時間 3,335 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 92 ms
12,972 KB
testcase_08 AC 121 ms
18,720 KB
testcase_09 AC 107 ms
17,204 KB
testcase_10 AC 111 ms
17,612 KB
testcase_11 AC 110 ms
17,952 KB
testcase_12 AC 107 ms
17,304 KB
testcase_13 AC 100 ms
16,364 KB
testcase_14 AC 99 ms
16,108 KB
testcase_15 AC 106 ms
16,964 KB
testcase_16 AC 130 ms
20,208 KB
testcase_17 AC 140 ms
20,740 KB
testcase_18 AC 137 ms
21,276 KB
testcase_19 AC 52 ms
11,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    arr = list(map(int, input().split()))
    if n == 1:
        print(*arr)

    mx = max(arr)
    ans = [0] * (mx + 1)
    for a in arr:
        ans[a] += 1
    for i in range(mx - 1, 0, -1):
        ans[i] += ans[i + 1]
    print(*ans[1:])


if __name__ == "__main__":
    main()
0