結果

問題 No.2092 Conjugation
ユーザー pluto77pluto77
提出日時 2023-01-17 12:57:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 909 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,756 KB
最終ジャッジ日時 2024-06-10 17:23:33
合計ジャッジ時間 3,581 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,496 KB
testcase_05 AC 25 ms
10,624 KB
testcase_06 AC 25 ms
10,496 KB
testcase_07 AC 98 ms
13,312 KB
testcase_08 AC 145 ms
18,716 KB
testcase_09 AC 129 ms
17,276 KB
testcase_10 AC 134 ms
17,764 KB
testcase_11 AC 131 ms
17,992 KB
testcase_12 AC 126 ms
17,408 KB
testcase_13 AC 123 ms
16,512 KB
testcase_14 AC 116 ms
16,512 KB
testcase_15 AC 123 ms
17,408 KB
testcase_16 AC 151 ms
20,060 KB
testcase_17 AC 147 ms
20,716 KB
testcase_18 AC 151 ms
20,756 KB
testcase_19 AC 41 ms
12,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N=int(input())
A=list(map(int,input().split()))
A.sort()
res=[]
for i in range(A[-1]):
 x=bisect.bisect(A,i)
 res.append(N-x)
print(*res)
0