結果

問題 No.1110 好きな歌
ユーザー tter4tter4
提出日時 2020-07-10 21:57:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 305 ms / 5,000 ms
コード長 182 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,548 KB
最終ジャッジ日時 2024-10-11 09:07:33
合計ジャッジ時間 10,527 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,064 KB
testcase_01 AC 38 ms
53,168 KB
testcase_02 AC 39 ms
52,804 KB
testcase_03 AC 38 ms
53,384 KB
testcase_04 AC 38 ms
52,620 KB
testcase_05 AC 38 ms
53,132 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 38 ms
52,404 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 38 ms
52,772 KB
testcase_10 AC 39 ms
53,108 KB
testcase_11 AC 43 ms
53,080 KB
testcase_12 AC 38 ms
52,940 KB
testcase_13 AC 38 ms
53,428 KB
testcase_14 AC 55 ms
63,152 KB
testcase_15 AC 49 ms
60,284 KB
testcase_16 AC 52 ms
62,664 KB
testcase_17 AC 59 ms
65,060 KB
testcase_18 AC 40 ms
54,080 KB
testcase_19 AC 62 ms
66,692 KB
testcase_20 AC 60 ms
64,976 KB
testcase_21 AC 52 ms
61,624 KB
testcase_22 AC 56 ms
63,476 KB
testcase_23 AC 47 ms
59,748 KB
testcase_24 AC 195 ms
78,584 KB
testcase_25 AC 217 ms
79,284 KB
testcase_26 AC 160 ms
78,628 KB
testcase_27 AC 218 ms
79,324 KB
testcase_28 AC 156 ms
78,480 KB
testcase_29 AC 259 ms
79,960 KB
testcase_30 AC 143 ms
78,596 KB
testcase_31 AC 129 ms
77,792 KB
testcase_32 AC 273 ms
80,564 KB
testcase_33 AC 153 ms
78,596 KB
testcase_34 AC 206 ms
79,324 KB
testcase_35 AC 234 ms
81,028 KB
testcase_36 AC 94 ms
76,708 KB
testcase_37 AC 138 ms
77,756 KB
testcase_38 AC 259 ms
80,340 KB
testcase_39 AC 213 ms
79,204 KB
testcase_40 AC 204 ms
79,996 KB
testcase_41 AC 94 ms
76,596 KB
testcase_42 AC 228 ms
80,408 KB
testcase_43 AC 255 ms
80,096 KB
testcase_44 AC 246 ms
80,948 KB
testcase_45 AC 290 ms
80,960 KB
testcase_46 AC 267 ms
81,548 KB
testcase_47 AC 299 ms
81,084 KB
testcase_48 AC 273 ms
80,840 KB
testcase_49 AC 228 ms
81,184 KB
testcase_50 AC 272 ms
80,700 KB
testcase_51 AC 257 ms
81,000 KB
testcase_52 AC 275 ms
80,640 KB
testcase_53 AC 305 ms
81,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect


n, d = map(int, input().split())
A = [int(input()) for _ in range(n)]
A_sorted = sorted(A)

for a in A:
    idx = bisect.bisect_right(A_sorted, a - d)
    print(idx)
0