結果

問題 No.1110 好きな歌
ユーザー stngstng
提出日時 2022-05-22 12:29:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 357 ms / 5,000 ms
コード長 267 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 104,044 KB
最終ジャッジ日時 2024-09-20 12:28:55
合計ジャッジ時間 13,360 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
54,016 KB
testcase_01 AC 43 ms
53,632 KB
testcase_02 AC 43 ms
53,888 KB
testcase_03 AC 42 ms
53,760 KB
testcase_04 AC 41 ms
53,504 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 42 ms
54,144 KB
testcase_07 AC 42 ms
53,632 KB
testcase_08 AC 42 ms
53,760 KB
testcase_09 AC 42 ms
53,376 KB
testcase_10 AC 42 ms
53,376 KB
testcase_11 AC 42 ms
54,016 KB
testcase_12 AC 43 ms
53,632 KB
testcase_13 AC 42 ms
53,760 KB
testcase_14 AC 58 ms
63,360 KB
testcase_15 AC 53 ms
61,696 KB
testcase_16 AC 55 ms
63,872 KB
testcase_17 AC 63 ms
66,432 KB
testcase_18 AC 43 ms
53,888 KB
testcase_19 AC 69 ms
67,456 KB
testcase_20 AC 64 ms
66,816 KB
testcase_21 AC 55 ms
62,080 KB
testcase_22 AC 64 ms
65,792 KB
testcase_23 AC 53 ms
60,672 KB
testcase_24 AC 237 ms
89,296 KB
testcase_25 AC 261 ms
92,528 KB
testcase_26 AC 185 ms
85,040 KB
testcase_27 AC 257 ms
92,520 KB
testcase_28 AC 186 ms
86,208 KB
testcase_29 AC 301 ms
94,032 KB
testcase_30 AC 167 ms
85,344 KB
testcase_31 AC 144 ms
82,088 KB
testcase_32 AC 323 ms
98,516 KB
testcase_33 AC 183 ms
86,148 KB
testcase_34 AC 243 ms
88,600 KB
testcase_35 AC 301 ms
95,708 KB
testcase_36 AC 107 ms
79,232 KB
testcase_37 AC 159 ms
83,328 KB
testcase_38 AC 309 ms
93,224 KB
testcase_39 AC 251 ms
89,516 KB
testcase_40 AC 244 ms
90,388 KB
testcase_41 AC 101 ms
77,568 KB
testcase_42 AC 277 ms
94,240 KB
testcase_43 AC 297 ms
95,056 KB
testcase_44 AC 310 ms
98,720 KB
testcase_45 AC 337 ms
102,328 KB
testcase_46 AC 330 ms
99,544 KB
testcase_47 AC 357 ms
102,772 KB
testcase_48 AC 326 ms
102,292 KB
testcase_49 AC 295 ms
95,296 KB
testcase_50 AC 343 ms
102,272 KB
testcase_51 AC 312 ms
98,688 KB
testcase_52 AC 338 ms
102,140 KB
testcase_53 AC 352 ms
104,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
from collections import defaultdict
n,D = map(int,input().split())
a = [int(input()) for i in range(n)]

ac = a[:]
ac.sort()

d = defaultdict(int)

for i in range(n):
    d[ac[i]] = bisect.bisect_right(ac,ac[i]-D)

for i in range(n):
    print(d[a[i]])
0