結果

問題 No.2092 Conjugation
ユーザー tetorapentagon
提出日時 2022-11-01 23:44:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 609 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 90,488 KB
最終ジャッジ日時 2024-07-16 11:23:18
合計ジャッジ時間 3,611 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

N = int(input())           
A = list(map(int, input().split()))
A = A[::-1]
j_max = max(A)
li = []
for i in range(j_max):
    li.append(N-bisect_left(A, i+1))

print(*li)
0