結果

問題 No.1110 好きな歌
ユーザー now4estnow4est
提出日時 2020-07-11 11:46:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 443 ms / 5,000 ms
コード長 120 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,756 KB
最終ジャッジ日時 2024-10-12 21:07:26
合計ジャッジ時間 13,005 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 30 ms
10,880 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 233 ms
23,688 KB
testcase_25 AC 279 ms
26,372 KB
testcase_26 AC 158 ms
18,780 KB
testcase_27 AC 284 ms
26,152 KB
testcase_28 AC 167 ms
19,780 KB
testcase_29 AC 351 ms
28,616 KB
testcase_30 AC 155 ms
19,780 KB
testcase_31 AC 110 ms
16,920 KB
testcase_32 AC 383 ms
30,824 KB
testcase_33 AC 168 ms
21,180 KB
testcase_34 AC 243 ms
24,616 KB
testcase_35 AC 341 ms
32,608 KB
testcase_36 AC 60 ms
13,524 KB
testcase_37 AC 124 ms
16,540 KB
testcase_38 AC 347 ms
28,312 KB
testcase_39 AC 263 ms
24,048 KB
testcase_40 AC 272 ms
28,048 KB
testcase_41 AC 48 ms
12,288 KB
testcase_42 AC 330 ms
30,316 KB
testcase_43 AC 337 ms
28,508 KB
testcase_44 AC 372 ms
32,504 KB
testcase_45 AC 417 ms
32,632 KB
testcase_46 AC 402 ms
32,504 KB
testcase_47 AC 443 ms
32,500 KB
testcase_48 AC 403 ms
32,756 KB
testcase_49 AC 318 ms
32,484 KB
testcase_50 AC 396 ms
32,484 KB
testcase_51 AC 388 ms
32,500 KB
testcase_52 AC 415 ms
32,636 KB
testcase_53 AC 435 ms
32,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect as b
_,D,*A=map(int,open(0).read().split())
B=sorted(A)
print(*[b.bisect_right(B,a-D)for a in A],sep='\n')
0