結果

問題 No.1110 好きな歌
ユーザー 👑 KazunKazun
提出日時 2020-07-10 21:49:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 308 ms / 5,000 ms
コード長 827 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 84,904 KB
最終ジャッジ日時 2024-10-11 08:50:07
合計ジャッジ時間 10,844 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,400 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 38 ms
52,216 KB
testcase_09 AC 37 ms
52,480 KB
testcase_10 AC 37 ms
52,096 KB
testcase_11 AC 38 ms
51,820 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 38 ms
52,480 KB
testcase_14 AC 49 ms
61,312 KB
testcase_15 AC 42 ms
53,760 KB
testcase_16 AC 50 ms
61,696 KB
testcase_17 AC 56 ms
63,872 KB
testcase_18 AC 39 ms
52,608 KB
testcase_19 AC 55 ms
64,384 KB
testcase_20 AC 54 ms
63,360 KB
testcase_21 AC 48 ms
60,416 KB
testcase_22 AC 54 ms
62,848 KB
testcase_23 AC 42 ms
53,376 KB
testcase_24 AC 202 ms
81,240 KB
testcase_25 AC 227 ms
81,884 KB
testcase_26 AC 168 ms
79,416 KB
testcase_27 AC 231 ms
81,996 KB
testcase_28 AC 160 ms
80,208 KB
testcase_29 AC 272 ms
81,728 KB
testcase_30 AC 138 ms
80,004 KB
testcase_31 AC 152 ms
79,624 KB
testcase_32 AC 279 ms
83,508 KB
testcase_33 AC 148 ms
81,020 KB
testcase_34 AC 196 ms
81,112 KB
testcase_35 AC 223 ms
84,088 KB
testcase_36 AC 90 ms
77,056 KB
testcase_37 AC 140 ms
79,916 KB
testcase_38 AC 263 ms
82,112 KB
testcase_39 AC 215 ms
81,184 KB
testcase_40 AC 201 ms
81,984 KB
testcase_41 AC 97 ms
76,800 KB
testcase_42 AC 224 ms
83,392 KB
testcase_43 AC 258 ms
81,608 KB
testcase_44 AC 242 ms
83,960 KB
testcase_45 AC 286 ms
84,720 KB
testcase_46 AC 273 ms
84,904 KB
testcase_47 AC 308 ms
84,264 KB
testcase_48 AC 276 ms
84,264 KB
testcase_49 AC 208 ms
84,240 KB
testcase_50 AC 280 ms
84,208 KB
testcase_51 AC 255 ms
84,088 KB
testcase_52 AC 304 ms
83,696 KB
testcase_53 AC 303 ms
84,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Binary_Search_Count(A,x,sort=True,equal=False):
    """2分探索によって,x未満の要素の個数を調べる.

    A:リスト
    x:調べる要素
    sort:ソートをする必要があるかどうか(Trueで必要)
    equal:Trueのときはx"未満"がx"以下"になる
    """
    if sort:
        A.sort()
        
    N=len(A)
    if A[-1]<=x:
        return N
    elif x<A[0] or (not equal and x==A[0]):
        return 0

    L,R=0,N
    while R-L>1:
        C=L+(R-L)//2
        if x<A[C] or (not equal and x==A[C]):
            R=C
        else:
            L=C
    return R
#--------------------------------------------------------------
N,D=map(int,input().split())
A=[]
for _ in range(N):
    A.append(int(input()))

B=sorted(A)
for a in A:
    print(Binary_Search_Count(B,a-D,sort=False,equal=True))
0