結果

問題 No.1110 好きな歌
ユーザー brthyyjpbrthyyjp
提出日時 2020-07-10 21:31:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 302 ms / 5,000 ms
コード長 234 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 82,816 KB
最終ジャッジ日時 2024-10-11 07:56:11
合計ジャッジ時間 11,379 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 42 ms
51,968 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 41 ms
51,968 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 41 ms
52,224 KB
testcase_12 AC 41 ms
52,096 KB
testcase_13 AC 41 ms
52,096 KB
testcase_14 AC 59 ms
62,080 KB
testcase_15 AC 54 ms
59,648 KB
testcase_16 AC 59 ms
61,696 KB
testcase_17 AC 67 ms
64,256 KB
testcase_18 AC 43 ms
52,480 KB
testcase_19 AC 71 ms
65,664 KB
testcase_20 AC 67 ms
64,256 KB
testcase_21 AC 56 ms
60,160 KB
testcase_22 AC 65 ms
63,232 KB
testcase_23 AC 52 ms
58,880 KB
testcase_24 AC 208 ms
79,616 KB
testcase_25 AC 227 ms
80,640 KB
testcase_26 AC 171 ms
78,592 KB
testcase_27 AC 236 ms
80,512 KB
testcase_28 AC 171 ms
79,356 KB
testcase_29 AC 261 ms
81,276 KB
testcase_30 AC 147 ms
78,976 KB
testcase_31 AC 140 ms
78,080 KB
testcase_32 AC 276 ms
81,536 KB
testcase_33 AC 166 ms
79,488 KB
testcase_34 AC 222 ms
80,000 KB
testcase_35 AC 250 ms
82,688 KB
testcase_36 AC 110 ms
77,184 KB
testcase_37 AC 136 ms
77,912 KB
testcase_38 AC 265 ms
81,408 KB
testcase_39 AC 222 ms
80,000 KB
testcase_40 AC 217 ms
81,408 KB
testcase_41 AC 95 ms
76,784 KB
testcase_42 AC 231 ms
81,536 KB
testcase_43 AC 249 ms
81,152 KB
testcase_44 AC 244 ms
82,560 KB
testcase_45 AC 295 ms
82,432 KB
testcase_46 AC 263 ms
82,568 KB
testcase_47 AC 288 ms
82,560 KB
testcase_48 AC 283 ms
82,304 KB
testcase_49 AC 227 ms
82,816 KB
testcase_50 AC 284 ms
82,176 KB
testcase_51 AC 272 ms
82,304 KB
testcase_52 AC 286 ms
82,304 KB
testcase_53 AC 302 ms
82,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())
A = [int(input()) for i in range(n)]
B = sorted(A)
ans = [0]*n
import bisect
for i, a in enumerate(A):
    b = a-d
    j = bisect.bisect_right(B, b)
    ans[i] = j
for i in range(n):
    print(ans[i])
0