結果

問題 No.2092 Conjugation
ユーザー roarisroaris
提出日時 2022-10-07 21:34:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 87,296 KB
実行使用メモリ 90,052 KB
最終ジャッジ日時 2023-09-03 00:35:56
合計ジャッジ時間 3,939 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,444 KB
testcase_01 AC 72 ms
71,392 KB
testcase_02 AC 73 ms
71,420 KB
testcase_03 AC 74 ms
71,384 KB
testcase_04 AC 74 ms
71,260 KB
testcase_05 AC 73 ms
71,580 KB
testcase_06 AC 74 ms
71,224 KB
testcase_07 AC 106 ms
79,464 KB
testcase_08 AC 141 ms
84,896 KB
testcase_09 AC 130 ms
81,652 KB
testcase_10 AC 132 ms
81,632 KB
testcase_11 AC 135 ms
81,764 KB
testcase_12 AC 132 ms
81,568 KB
testcase_13 AC 125 ms
80,444 KB
testcase_14 AC 123 ms
80,524 KB
testcase_15 AC 131 ms
81,896 KB
testcase_16 AC 149 ms
88,848 KB
testcase_17 AC 126 ms
90,052 KB
testcase_18 AC 147 ms
89,748 KB
testcase_19 AC 89 ms
86,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from bisect import *

N = int(input())
A = list(map(int, input().split()))
A.sort()
ans = [N-bisect_left(A, i) for i in range(1, A[-1]+1)]
print(*ans)
0