結果

問題 No.2092 Conjugation
ユーザー えいじ
提出日時 2023-10-05 22:06:01
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 153 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 24,052 KB
最終ジャッジ日時 2024-07-26 15:12:14
合計ジャッジ時間 4,470 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 6 TLE * 1 -- * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(x) for x in input().split()]
ans = []
for i in range(1, max(a) + 1):
    ans.append(len([x for x in a if x >= i]))
print(*ans)
0