結果

問題 No.2092 Conjugation
ユーザー NPNP
提出日時 2024-03-18 16:09:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 110,192 KB
最終ジャッジ日時 2024-09-30 04:58:23
合計ジャッジ時間 2,795 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,460 KB
testcase_01 AC 40 ms
53,744 KB
testcase_02 AC 38 ms
54,336 KB
testcase_03 AC 40 ms
54,312 KB
testcase_04 AC 37 ms
53,968 KB
testcase_05 AC 37 ms
55,128 KB
testcase_06 AC 37 ms
54,380 KB
testcase_07 AC 64 ms
80,404 KB
testcase_08 AC 87 ms
95,900 KB
testcase_09 AC 73 ms
85,188 KB
testcase_10 AC 79 ms
86,812 KB
testcase_11 AC 76 ms
87,548 KB
testcase_12 AC 74 ms
84,564 KB
testcase_13 AC 67 ms
80,744 KB
testcase_14 AC 67 ms
80,504 KB
testcase_15 AC 76 ms
84,176 KB
testcase_16 AC 97 ms
102,444 KB
testcase_17 AC 93 ms
94,464 KB
testcase_18 AC 112 ms
110,192 KB
testcase_19 AC 59 ms
78,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

def young_diagram(A):
    counter = Counter(A)
    max_A = max(A)
    B = [0] * (max_A + 1)
    for k, v in counter.items():
        B[k] += v
    for i in range(max_A - 1, -1, -1):
        B[i] += B[i + 1]
    return B[1:]

N = int(input())
A = list(map(int, input().split()))
print(*young_diagram(A))
0