結果

問題 No.1110 好きな歌
ユーザー U SU S
提出日時 2020-07-10 21:35:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 319 ms / 5,000 ms
コード長 973 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 84,656 KB
最終ジャッジ日時 2024-10-11 08:06:21
合計ジャッジ時間 11,081 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
52,344 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 39 ms
51,456 KB
testcase_08 AC 40 ms
52,352 KB
testcase_09 AC 43 ms
51,840 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 40 ms
51,712 KB
testcase_12 AC 40 ms
51,712 KB
testcase_13 AC 40 ms
51,968 KB
testcase_14 AC 56 ms
61,440 KB
testcase_15 AC 51 ms
59,264 KB
testcase_16 AC 56 ms
61,696 KB
testcase_17 AC 61 ms
63,744 KB
testcase_18 AC 42 ms
52,224 KB
testcase_19 AC 62 ms
65,408 KB
testcase_20 AC 60 ms
64,128 KB
testcase_21 AC 52 ms
60,288 KB
testcase_22 AC 58 ms
62,720 KB
testcase_23 AC 48 ms
58,496 KB
testcase_24 AC 206 ms
80,348 KB
testcase_25 AC 228 ms
81,504 KB
testcase_26 AC 169 ms
79,112 KB
testcase_27 AC 231 ms
82,004 KB
testcase_28 AC 163 ms
80,392 KB
testcase_29 AC 275 ms
81,472 KB
testcase_30 AC 149 ms
80,132 KB
testcase_31 AC 131 ms
79,232 KB
testcase_32 AC 280 ms
83,400 KB
testcase_33 AC 159 ms
80,516 KB
testcase_34 AC 221 ms
80,856 KB
testcase_35 AC 257 ms
84,268 KB
testcase_36 AC 100 ms
76,800 KB
testcase_37 AC 146 ms
78,976 KB
testcase_38 AC 273 ms
81,724 KB
testcase_39 AC 231 ms
81,088 KB
testcase_40 AC 211 ms
82,112 KB
testcase_41 AC 96 ms
76,800 KB
testcase_42 AC 242 ms
83,780 KB
testcase_43 AC 271 ms
81,596 KB
testcase_44 AC 262 ms
83,628 KB
testcase_45 AC 308 ms
83,760 KB
testcase_46 AC 283 ms
84,016 KB
testcase_47 AC 316 ms
84,012 KB
testcase_48 AC 289 ms
84,144 KB
testcase_49 AC 241 ms
84,400 KB
testcase_50 AC 287 ms
83,848 KB
testcase_51 AC 274 ms
84,140 KB
testcase_52 AC 299 ms
83,880 KB
testcase_53 AC 319 ms
84,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# # a,b,c,d = map(int,input().split())
# # if a < b and c > d:
# #     print("YES")
# # else:print("NO")
#
# # n,h = map(int,input().split())
# # a = list(map(int,input().split()))
# # for i in range(n):
# #     a[i] += h
# # print(*a)
#
# n = int(input())
# t = list(map(int,input().split()))
# comb = []
# for i in range(12):
#     u = []
#     u.append(i)
#     u.append((i+2)%12)
#     u.append((i+4)%12)
#     u.append((i+5)%12)
#     u.append((i+7)%12)
#     u.append((i+9)%12)
#     u.append((i+11)%12)
#     comb.append(u)
# ans = []
# for i in range(12):
#     tar = comb[i]
#     flag = True
#     for j in t:
#         if j not in tar:
#             flag = False
#     if flag:
#         ans.append(i)
# if len(ans) == 1:
#     print(ans[0])
# else:
#     print(-1)
#

n,d = map(int,input().split())
a = []
for i in range(n):
    a.append(int(input()))
asort = sorted(a)
import bisect
for i in range(n):
    p = bisect.bisect_right(asort, a[i]-d)
    print(p)


0