結果

問題 No.2092 Conjugation
ユーザー H20H20
提出日時 2022-10-07 22:19:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 101,744 KB
最終ジャッジ日時 2024-06-12 19:07:24
合計ジャッジ時間 2,540 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split())) 
L = [0]*(A[0]+1)
L[0]=N
for a in A:
    L[a]-=1
AC = []
v = 0
for l in L:
    v+=l
    AC.append(v)
print(*AC[:len(AC)-1])
0