結果

問題 No.2092 Conjugation
ユーザー tetorapentagontetorapentagon
提出日時 2022-11-01 23:44:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 609 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 90,488 KB
最終ジャッジ日時 2024-07-16 11:23:18
合計ジャッジ時間 3,611 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,772 KB
testcase_01 AC 35 ms
52,424 KB
testcase_02 AC 36 ms
53,224 KB
testcase_03 AC 41 ms
52,880 KB
testcase_04 AC 37 ms
53,536 KB
testcase_05 AC 36 ms
52,828 KB
testcase_06 AC 39 ms
52,556 KB
testcase_07 AC 78 ms
80,212 KB
testcase_08 AC 107 ms
83,952 KB
testcase_09 AC 96 ms
81,572 KB
testcase_10 AC 101 ms
82,568 KB
testcase_11 AC 98 ms
82,428 KB
testcase_12 AC 93 ms
82,156 KB
testcase_13 AC 87 ms
80,368 KB
testcase_14 AC 88 ms
80,904 KB
testcase_15 AC 98 ms
83,088 KB
testcase_16 AC 112 ms
88,448 KB
testcase_17 AC 93 ms
90,300 KB
testcase_18 AC 112 ms
90,488 KB
testcase_19 AC 55 ms
75,760 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