結果

問題 No.1110 好きな歌
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-21 12:52:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 779 ms / 5,000 ms
コード長 147 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,300 KB
最終ジャッジ日時 2024-05-04 01:35:12
合計ジャッジ時間 21,133 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 28 ms
10,880 KB
testcase_13 AC 27 ms
10,752 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 27 ms
10,880 KB
testcase_19 AC 30 ms
10,880 KB
testcase_20 AC 29 ms
10,880 KB
testcase_21 AC 28 ms
10,752 KB
testcase_22 AC 28 ms
10,880 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 448 ms
16,820 KB
testcase_25 AC 539 ms
18,148 KB
testcase_26 AC 299 ms
14,592 KB
testcase_27 AC 561 ms
18,044 KB
testcase_28 AC 319 ms
15,104 KB
testcase_29 AC 643 ms
19,264 KB
testcase_30 AC 305 ms
15,104 KB
testcase_31 AC 199 ms
13,440 KB
testcase_32 AC 721 ms
20,136 KB
testcase_33 AC 341 ms
15,744 KB
testcase_34 AC 472 ms
17,400 KB
testcase_35 AC 718 ms
21,280 KB
testcase_36 AC 103 ms
12,032 KB
testcase_37 AC 219 ms
13,568 KB
testcase_38 AC 633 ms
19,264 KB
testcase_39 AC 498 ms
17,108 KB
testcase_40 AC 573 ms
18,860 KB
testcase_41 AC 72 ms
11,392 KB
testcase_42 AC 667 ms
19,972 KB
testcase_43 AC 629 ms
19,184 KB
testcase_44 AC 698 ms
21,116 KB
testcase_45 AC 759 ms
21,108 KB
testcase_46 AC 742 ms
21,300 KB
testcase_47 AC 770 ms
21,240 KB
testcase_48 AC 734 ms
21,108 KB
testcase_49 AC 662 ms
21,236 KB
testcase_50 AC 747 ms
21,048 KB
testcase_51 AC 722 ms
21,108 KB
testcase_52 AC 756 ms
21,040 KB
testcase_53 AC 779 ms
21,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d=map(int,input().split())
a=[int(input()) for _ in range(n)]
b=sorted(a)
import bisect
for i in a:
    x=bisect.bisect_right(b,i-d)
    print(x)
0