結果

問題 No.1110 好きな歌
ユーザー yuly3yuly3
提出日時 2020-07-15 00:09:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 262 ms / 5,000 ms
コード長 368 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 95,488 KB
最終ジャッジ日時 2024-11-19 06:33:23
合計ジャッジ時間 11,055 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 40 ms
52,188 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 40 ms
51,712 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 42 ms
51,840 KB
testcase_12 AC 40 ms
51,712 KB
testcase_13 AC 40 ms
52,224 KB
testcase_14 AC 49 ms
60,032 KB
testcase_15 AC 46 ms
58,368 KB
testcase_16 AC 48 ms
59,392 KB
testcase_17 AC 50 ms
61,140 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 50 ms
60,928 KB
testcase_20 AC 50 ms
60,288 KB
testcase_21 AC 47 ms
59,392 KB
testcase_22 AC 50 ms
59,776 KB
testcase_23 AC 45 ms
58,112 KB
testcase_24 AC 167 ms
86,528 KB
testcase_25 AC 186 ms
88,192 KB
testcase_26 AC 133 ms
82,816 KB
testcase_27 AC 188 ms
87,952 KB
testcase_28 AC 131 ms
84,064 KB
testcase_29 AC 225 ms
90,764 KB
testcase_30 AC 119 ms
82,048 KB
testcase_31 AC 104 ms
79,488 KB
testcase_32 AC 234 ms
91,796 KB
testcase_33 AC 127 ms
83,660 KB
testcase_34 AC 179 ms
85,832 KB
testcase_35 AC 204 ms
91,264 KB
testcase_36 AC 75 ms
77,556 KB
testcase_37 AC 113 ms
80,768 KB
testcase_38 AC 219 ms
91,372 KB
testcase_39 AC 177 ms
86,388 KB
testcase_40 AC 172 ms
89,676 KB
testcase_41 AC 75 ms
76,416 KB
testcase_42 AC 204 ms
90,624 KB
testcase_43 AC 222 ms
90,112 KB
testcase_44 AC 214 ms
92,160 KB
testcase_45 AC 252 ms
94,088 KB
testcase_46 AC 231 ms
94,592 KB
testcase_47 AC 260 ms
95,488 KB
testcase_48 AC 239 ms
94,908 KB
testcase_49 AC 194 ms
90,240 KB
testcase_50 AC 237 ms
95,180 KB
testcase_51 AC 224 ms
92,560 KB
testcase_52 AC 238 ms
94,684 KB
testcase_53 AC 262 ms
94,544 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