結果

問題 No.2092 Conjugation
ユーザー tetorapentagontetorapentagon
提出日時 2022-11-01 23:44:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 1,090 ms
コンパイル使用メモリ 87,192 KB
実行使用メモリ 91,852 KB
最終ジャッジ日時 2023-09-23 11:48:17
合計ジャッジ時間 5,558 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,088 KB
testcase_01 AC 69 ms
71,240 KB
testcase_02 AC 73 ms
71,296 KB
testcase_03 AC 73 ms
71,320 KB
testcase_04 AC 69 ms
71,224 KB
testcase_05 AC 71 ms
71,468 KB
testcase_06 AC 70 ms
71,400 KB
testcase_07 AC 106 ms
81,448 KB
testcase_08 AC 159 ms
85,148 KB
testcase_09 AC 130 ms
82,860 KB
testcase_10 AC 132 ms
83,532 KB
testcase_11 AC 131 ms
83,536 KB
testcase_12 AC 131 ms
84,144 KB
testcase_13 AC 124 ms
81,916 KB
testcase_14 AC 124 ms
82,088 KB
testcase_15 AC 133 ms
83,796 KB
testcase_16 AC 145 ms
89,732 KB
testcase_17 AC 128 ms
91,852 KB
testcase_18 AC 147 ms
91,348 KB
testcase_19 AC 87 ms
87,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

N = int(input())           
A = list(map(int, input().split()))
A = A[::-1]
j_max = max(A)
li = []
for i in range(j_max):
    li.append(N-bisect_left(A, i+1))

print(*li)
0