結果

問題 No.1110 好きな歌
ユーザー ryusukeryusuke
提出日時 2022-01-30 15:52:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 311 ms / 5,000 ms
コード長 212 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 81,664 KB
最終ジャッジ日時 2024-06-11 08:18:44
合計ジャッジ時間 11,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 38 ms
52,480 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 39 ms
52,480 KB
testcase_12 AC 40 ms
51,712 KB
testcase_13 AC 40 ms
52,224 KB
testcase_14 AC 55 ms
62,464 KB
testcase_15 AC 48 ms
59,520 KB
testcase_16 AC 52 ms
62,208 KB
testcase_17 AC 58 ms
64,000 KB
testcase_18 AC 40 ms
52,480 KB
testcase_19 AC 60 ms
65,408 KB
testcase_20 AC 57 ms
64,128 KB
testcase_21 AC 53 ms
60,928 KB
testcase_22 AC 58 ms
63,360 KB
testcase_23 AC 48 ms
59,392 KB
testcase_24 AC 199 ms
78,684 KB
testcase_25 AC 224 ms
79,552 KB
testcase_26 AC 164 ms
78,512 KB
testcase_27 AC 223 ms
79,584 KB
testcase_28 AC 158 ms
78,464 KB
testcase_29 AC 272 ms
79,872 KB
testcase_30 AC 145 ms
78,708 KB
testcase_31 AC 129 ms
77,476 KB
testcase_32 AC 284 ms
80,404 KB
testcase_33 AC 157 ms
78,628 KB
testcase_34 AC 214 ms
79,104 KB
testcase_35 AC 242 ms
81,152 KB
testcase_36 AC 96 ms
77,084 KB
testcase_37 AC 139 ms
77,652 KB
testcase_38 AC 263 ms
80,188 KB
testcase_39 AC 210 ms
79,216 KB
testcase_40 AC 216 ms
80,068 KB
testcase_41 AC 104 ms
76,348 KB
testcase_42 AC 234 ms
80,460 KB
testcase_43 AC 263 ms
80,112 KB
testcase_44 AC 257 ms
81,012 KB
testcase_45 AC 300 ms
81,280 KB
testcase_46 AC 268 ms
81,056 KB
testcase_47 AC 303 ms
81,640 KB
testcase_48 AC 276 ms
80,916 KB
testcase_49 AC 228 ms
81,664 KB
testcase_50 AC 277 ms
80,424 KB
testcase_51 AC 265 ms
80,656 KB
testcase_52 AC 278 ms
80,580 KB
testcase_53 AC 311 ms
81,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right

n, d = map(int, input().split())
a = [int(input()) for _ in range(n)]
p = [i for i in a]
p.sort()

# Ai - d >= aj
for i in range(n):
    t = bisect_right(p, a[i] - d)
    print(t)
0