結果

問題 No.2092 Conjugation
ユーザー pluto77pluto77
提出日時 2023-01-17 12:57:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 12,032 KB
実行使用メモリ 20,668 KB
最終ジャッジ日時 2025-01-02 11:21:58
合計ジャッジ時間 4,122 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 28 ms
10,112 KB
testcase_02 AC 28 ms
10,240 KB
testcase_03 AC 30 ms
10,240 KB
testcase_04 AC 30 ms
10,112 KB
testcase_05 AC 28 ms
10,240 KB
testcase_06 AC 29 ms
10,112 KB
testcase_07 AC 111 ms
12,672 KB
testcase_08 AC 155 ms
18,012 KB
testcase_09 AC 142 ms
16,836 KB
testcase_10 AC 145 ms
17,152 KB
testcase_11 AC 141 ms
17,420 KB
testcase_12 AC 135 ms
17,024 KB
testcase_13 AC 140 ms
16,128 KB
testcase_14 AC 134 ms
16,000 KB
testcase_15 AC 144 ms
16,848 KB
testcase_16 AC 159 ms
19,644 KB
testcase_17 AC 156 ms
20,520 KB
testcase_18 AC 162 ms
20,668 KB
testcase_19 AC 40 ms
11,552 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