結果

問題 No.2092 Conjugation
ユーザー tnogamitnogami
提出日時 2022-10-08 13:48:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,836 KB
最終ジャッジ日時 2024-06-22 16:12:46
合計ジャッジ時間 3,103 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,880 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 25 ms
10,880 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 96 ms
13,440 KB
testcase_08 AC 139 ms
18,720 KB
testcase_09 AC 127 ms
17,548 KB
testcase_10 AC 150 ms
17,768 KB
testcase_11 AC 129 ms
17,996 KB
testcase_12 AC 125 ms
17,408 KB
testcase_13 AC 117 ms
16,512 KB
testcase_14 AC 114 ms
16,512 KB
testcase_15 AC 137 ms
17,280 KB
testcase_16 AC 144 ms
20,060 KB
testcase_17 AC 143 ms
20,660 KB
testcase_18 AC 151 ms
20,836 KB
testcase_19 AC 42 ms
12,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N = int(input())
A = list(map(int,input().split()))
A.sort()
ans = []
for i in range(A[-1]):
    idx = bisect.bisect(A, i)
    ans.append(N-idx)

print(*ans)
0