結果

問題 No.1110 好きな歌
ユーザー uni_pythonuni_python
提出日時 2020-07-11 15:38:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 748 ms / 5,000 ms
コード長 531 bytes
コンパイル時間 477 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 88,608 KB
最終ジャッジ日時 2024-10-13 03:34:04
合計ジャッジ時間 20,165 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,252 KB
testcase_01 AC 36 ms
53,280 KB
testcase_02 AC 41 ms
53,620 KB
testcase_03 AC 40 ms
52,432 KB
testcase_04 AC 37 ms
53,380 KB
testcase_05 AC 38 ms
51,948 KB
testcase_06 AC 37 ms
52,340 KB
testcase_07 AC 37 ms
52,928 KB
testcase_08 AC 37 ms
51,892 KB
testcase_09 AC 38 ms
53,164 KB
testcase_10 AC 38 ms
53,100 KB
testcase_11 AC 38 ms
53,116 KB
testcase_12 AC 38 ms
52,508 KB
testcase_13 AC 38 ms
52,888 KB
testcase_14 AC 48 ms
61,688 KB
testcase_15 AC 45 ms
59,856 KB
testcase_16 AC 48 ms
60,504 KB
testcase_17 AC 51 ms
63,224 KB
testcase_18 AC 38 ms
53,288 KB
testcase_19 AC 51 ms
64,104 KB
testcase_20 AC 52 ms
64,016 KB
testcase_21 AC 47 ms
61,512 KB
testcase_22 AC 50 ms
63,440 KB
testcase_23 AC 44 ms
59,644 KB
testcase_24 AC 433 ms
83,216 KB
testcase_25 AC 523 ms
84,476 KB
testcase_26 AC 288 ms
80,200 KB
testcase_27 AC 518 ms
84,172 KB
testcase_28 AC 311 ms
81,852 KB
testcase_29 AC 600 ms
86,044 KB
testcase_30 AC 300 ms
81,516 KB
testcase_31 AC 210 ms
79,144 KB
testcase_32 AC 675 ms
87,132 KB
testcase_33 AC 341 ms
81,392 KB
testcase_34 AC 462 ms
83,468 KB
testcase_35 AC 695 ms
88,088 KB
testcase_36 AC 119 ms
77,340 KB
testcase_37 AC 226 ms
79,140 KB
testcase_38 AC 596 ms
86,676 KB
testcase_39 AC 454 ms
83,444 KB
testcase_40 AC 553 ms
86,332 KB
testcase_41 AC 97 ms
76,768 KB
testcase_42 AC 635 ms
86,796 KB
testcase_43 AC 598 ms
86,168 KB
testcase_44 AC 706 ms
87,972 KB
testcase_45 AC 737 ms
87,968 KB
testcase_46 AC 727 ms
88,544 KB
testcase_47 AC 747 ms
88,100 KB
testcase_48 AC 732 ms
88,352 KB
testcase_49 AC 696 ms
88,560 KB
testcase_50 AC 728 ms
88,096 KB
testcase_51 AC 714 ms
88,352 KB
testcase_52 AC 722 ms
87,844 KB
testcase_53 AC 748 ms
88,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    mod=10**9+7
    N,D=MI()
    A=[]
    for i in range(N):
        a=I()
        A.append((a,i))
        
    import bisect
    A.sort()
    ans=[0]*N
    
    for i in range(N):
        aa=A[i]
        t=(aa[0]-D,N)
        num = bisect.bisect_right(A,t)
        ans[aa[1]]=num
        
    for i in range(N):
        print(ans[i])
        
        


main()
0