結果

問題 No.1110 好きな歌
ユーザー Akijin_007Akijin_007
提出日時 2022-11-04 14:14:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 282 ms / 5,000 ms
コード長 316 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 82,944 KB
最終ジャッジ日時 2024-07-18 13:49:27
合計ジャッジ時間 11,752 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 36 ms
51,968 KB
testcase_13 AC 37 ms
51,968 KB
testcase_14 AC 56 ms
61,696 KB
testcase_15 AC 48 ms
59,648 KB
testcase_16 AC 52 ms
61,568 KB
testcase_17 AC 59 ms
64,128 KB
testcase_18 AC 41 ms
52,224 KB
testcase_19 AC 62 ms
65,664 KB
testcase_20 AC 58 ms
63,872 KB
testcase_21 AC 51 ms
60,288 KB
testcase_22 AC 57 ms
63,104 KB
testcase_23 AC 49 ms
58,880 KB
testcase_24 AC 198 ms
79,744 KB
testcase_25 AC 208 ms
80,640 KB
testcase_26 AC 154 ms
78,976 KB
testcase_27 AC 209 ms
80,512 KB
testcase_28 AC 148 ms
79,104 KB
testcase_29 AC 251 ms
81,408 KB
testcase_30 AC 144 ms
79,232 KB
testcase_31 AC 126 ms
77,824 KB
testcase_32 AC 253 ms
81,664 KB
testcase_33 AC 152 ms
79,104 KB
testcase_34 AC 203 ms
80,256 KB
testcase_35 AC 228 ms
82,816 KB
testcase_36 AC 99 ms
77,184 KB
testcase_37 AC 135 ms
77,952 KB
testcase_38 AC 261 ms
81,792 KB
testcase_39 AC 206 ms
80,256 KB
testcase_40 AC 204 ms
81,408 KB
testcase_41 AC 99 ms
76,800 KB
testcase_42 AC 226 ms
81,536 KB
testcase_43 AC 241 ms
81,536 KB
testcase_44 AC 235 ms
82,560 KB
testcase_45 AC 276 ms
82,560 KB
testcase_46 AC 253 ms
82,944 KB
testcase_47 AC 282 ms
82,560 KB
testcase_48 AC 257 ms
82,560 KB
testcase_49 AC 217 ms
82,944 KB
testcase_50 AC 263 ms
82,304 KB
testcase_51 AC 246 ms
82,432 KB
testcase_52 AC 256 ms
82,304 KB
testcase_53 AC 280 ms
82,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N, D = map(int, input().split())
A = [0] * N
for i in range(N):
    A[i] = int(input())

B = sorted(A)

import bisect

ans = [0] * N
for i in range(N):
    t = bisect.bisect(B, A[i]-D)
    ans[i] = t

for i in range(N):
    print(ans[i])



0