結果

問題 No.1110 好きな歌
ユーザー now4estnow4est
提出日時 2020-07-11 11:46:45
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 364 ms / 5,000 ms
コード長 120 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 10,524 KB
実行使用メモリ 29,988 KB
最終ジャッジ日時 2023-08-02 22:51:36
合計ジャッジ時間 10,826 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,900 KB
testcase_01 AC 14 ms
7,884 KB
testcase_02 AC 13 ms
7,948 KB
testcase_03 AC 16 ms
7,948 KB
testcase_04 AC 16 ms
7,864 KB
testcase_05 AC 15 ms
8,040 KB
testcase_06 AC 16 ms
7,856 KB
testcase_07 AC 15 ms
7,964 KB
testcase_08 AC 14 ms
7,812 KB
testcase_09 AC 14 ms
7,992 KB
testcase_10 AC 15 ms
7,964 KB
testcase_11 AC 13 ms
8,028 KB
testcase_12 AC 14 ms
7,992 KB
testcase_13 AC 13 ms
7,948 KB
testcase_14 AC 14 ms
7,952 KB
testcase_15 AC 14 ms
8,032 KB
testcase_16 AC 14 ms
7,956 KB
testcase_17 AC 14 ms
7,964 KB
testcase_18 AC 13 ms
7,896 KB
testcase_19 AC 14 ms
7,900 KB
testcase_20 AC 14 ms
7,876 KB
testcase_21 AC 15 ms
7,892 KB
testcase_22 AC 15 ms
7,904 KB
testcase_23 AC 14 ms
7,812 KB
testcase_24 AC 180 ms
21,024 KB
testcase_25 AC 231 ms
23,916 KB
testcase_26 AC 116 ms
16,204 KB
testcase_27 AC 219 ms
23,760 KB
testcase_28 AC 128 ms
17,104 KB
testcase_29 AC 286 ms
26,076 KB
testcase_30 AC 115 ms
17,092 KB
testcase_31 AC 80 ms
13,920 KB
testcase_32 AC 313 ms
28,072 KB
testcase_33 AC 123 ms
18,596 KB
testcase_34 AC 194 ms
22,048 KB
testcase_35 AC 286 ms
29,904 KB
testcase_36 AC 39 ms
10,908 KB
testcase_37 AC 92 ms
14,960 KB
testcase_38 AC 280 ms
25,940 KB
testcase_39 AC 198 ms
21,372 KB
testcase_40 AC 210 ms
25,336 KB
testcase_41 AC 30 ms
9,708 KB
testcase_42 AC 264 ms
27,604 KB
testcase_43 AC 283 ms
25,924 KB
testcase_44 AC 298 ms
29,908 KB
testcase_45 AC 323 ms
29,912 KB
testcase_46 AC 312 ms
29,952 KB
testcase_47 AC 364 ms
29,820 KB
testcase_48 AC 323 ms
29,840 KB
testcase_49 AC 257 ms
29,976 KB
testcase_50 AC 327 ms
29,988 KB
testcase_51 AC 310 ms
29,932 KB
testcase_52 AC 338 ms
29,904 KB
testcase_53 AC 353 ms
29,844 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