結果

問題 No.2092 Conjugation
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-09 19:26:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 637 bytes
コンパイル時間 535 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 99,584 KB
最終ジャッジ日時 2024-06-23 18:05:28
合計ジャッジ時間 3,244 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,168 KB
testcase_01 AC 44 ms
55,424 KB
testcase_02 AC 45 ms
55,552 KB
testcase_03 AC 44 ms
55,552 KB
testcase_04 AC 44 ms
55,296 KB
testcase_05 AC 44 ms
55,296 KB
testcase_06 AC 45 ms
55,936 KB
testcase_07 AC 76 ms
85,120 KB
testcase_08 AC 115 ms
84,224 KB
testcase_09 AC 110 ms
83,140 KB
testcase_10 AC 111 ms
82,816 KB
testcase_11 AC 112 ms
82,760 KB
testcase_12 AC 114 ms
82,768 KB
testcase_13 AC 110 ms
82,288 KB
testcase_14 AC 103 ms
82,048 KB
testcase_15 AC 112 ms
82,984 KB
testcase_16 AC 125 ms
88,480 KB
testcase_17 AC 97 ms
99,584 KB
testcase_18 AC 124 ms
90,236 KB
testcase_19 AC 59 ms
78,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline


N = int(input())
A = list(map(int,input().split()))
def cle(a,D):
    
    y = len(D)-1
    x = 0
    if D[x]>a:
        return 0
        
    if D[y]<=a:
        return y+1
    
    while y-x>1:
        mid = (y+x)//2
        if D[mid]<=a:
            x = mid
        else:
            y = mid
    return y
X = A[0]
A = [-i for i in A]
A.sort()
ans = []
for i in range(1,X+1):
    
    tmp = cle(-i,A)
    ans.append(tmp)
print(*ans)
0