結果

問題 No.1110 好きな歌
ユーザー yuly3yuly3
提出日時 2020-07-15 00:09:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 277 ms / 5,000 ms
コード長 368 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 95,616 KB
最終ジャッジ日時 2024-04-29 22:07:37
合計ジャッジ時間 11,398 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 41 ms
51,712 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 41 ms
52,352 KB
testcase_12 AC 40 ms
51,840 KB
testcase_13 AC 40 ms
51,840 KB
testcase_14 AC 50 ms
59,264 KB
testcase_15 AC 47 ms
58,624 KB
testcase_16 AC 49 ms
59,136 KB
testcase_17 AC 52 ms
60,800 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 52 ms
60,800 KB
testcase_20 AC 53 ms
60,160 KB
testcase_21 AC 50 ms
59,008 KB
testcase_22 AC 52 ms
60,032 KB
testcase_23 AC 48 ms
58,112 KB
testcase_24 AC 178 ms
86,528 KB
testcase_25 AC 201 ms
88,704 KB
testcase_26 AC 145 ms
82,816 KB
testcase_27 AC 201 ms
88,448 KB
testcase_28 AC 142 ms
83,968 KB
testcase_29 AC 239 ms
90,752 KB
testcase_30 AC 129 ms
82,176 KB
testcase_31 AC 114 ms
78,720 KB
testcase_32 AC 244 ms
92,192 KB
testcase_33 AC 137 ms
83,840 KB
testcase_34 AC 190 ms
85,888 KB
testcase_35 AC 216 ms
90,880 KB
testcase_36 AC 88 ms
77,312 KB
testcase_37 AC 124 ms
80,768 KB
testcase_38 AC 237 ms
91,520 KB
testcase_39 AC 191 ms
86,272 KB
testcase_40 AC 186 ms
89,728 KB
testcase_41 AC 85 ms
76,544 KB
testcase_42 AC 210 ms
90,496 KB
testcase_43 AC 231 ms
90,240 KB
testcase_44 AC 226 ms
91,904 KB
testcase_45 AC 268 ms
94,216 KB
testcase_46 AC 246 ms
94,720 KB
testcase_47 AC 277 ms
95,616 KB
testcase_48 AC 253 ms
94,652 KB
testcase_49 AC 206 ms
90,112 KB
testcase_50 AC 249 ms
95,360 KB
testcase_51 AC 235 ms
92,180 KB
testcase_52 AC 252 ms
94,364 KB
testcase_53 AC 275 ms
94,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from bisect import bisect_right

sys.setrecursionlimit(10 ** 7)
rl = sys.stdin.readline


def solve():
    N, D = map(int, rl().split())
    A = [int(rl()) for _ in range(N)]
    
    B = sorted(A)
    ans = []
    for ai in A:
        idx = bisect_right(B, ai - D)
        ans.append(idx)
    print(*ans, sep='\n')


if __name__ == '__main__':
    solve()
0