結果

問題 No.2092 Conjugation
ユーザー MasKoaTSMasKoaTS
提出日時 2022-10-07 21:25:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,372 KB
最終ジャッジ日時 2024-06-12 05:52:03
合計ジャッジ時間 2,622 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

m = 10 ** 5 + 1
cnt = [0] * m

for k in a:
    cnt[k] += 1
    
from itertools import accumulate
acc = list(accumulate(cnt))

print(*(n - acc[j] for j in range(a[0])))
0