結果

問題 No.2092 Conjugation
ユーザー flygonflygon
提出日時 2022-10-07 21:23:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,640 KB
最終ジャッジ日時 2024-06-12 05:47:29
合計ジャッジ時間 3,124 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
a1 = a[0]
import bisect
a.sort()
ans = []
for i in range(1, a1+1):
  t = bisect.bisect_left(a, i)
  ans.append(n - t)
print(*ans)
  
0