結果

問題 No.1110 好きな歌
ユーザー pluto77pluto77
提出日時 2020-07-11 11:33:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 877 ms / 5,000 ms
コード長 170 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,180 KB
最終ジャッジ日時 2024-10-12 20:38:30
合計ジャッジ時間 22,154 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,496 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 30 ms
10,496 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 31 ms
10,624 KB
testcase_17 AC 32 ms
10,624 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 33 ms
10,624 KB
testcase_20 AC 32 ms
10,624 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 31 ms
10,624 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 492 ms
16,704 KB
testcase_25 AC 595 ms
18,032 KB
testcase_26 AC 318 ms
14,464 KB
testcase_27 AC 590 ms
17,920 KB
testcase_28 AC 343 ms
14,976 KB
testcase_29 AC 700 ms
19,136 KB
testcase_30 AC 330 ms
14,976 KB
testcase_31 AC 218 ms
13,312 KB
testcase_32 AC 755 ms
19,896 KB
testcase_33 AC 372 ms
15,616 KB
testcase_34 AC 510 ms
17,152 KB
testcase_35 AC 781 ms
21,112 KB
testcase_36 AC 105 ms
11,776 KB
testcase_37 AC 237 ms
13,440 KB
testcase_38 AC 696 ms
19,272 KB
testcase_39 AC 512 ms
16,860 KB
testcase_40 AC 609 ms
18,740 KB
testcase_41 AC 73 ms
11,264 KB
testcase_42 AC 702 ms
19,720 KB
testcase_43 AC 680 ms
19,164 KB
testcase_44 AC 795 ms
20,992 KB
testcase_45 AC 859 ms
20,860 KB
testcase_46 AC 830 ms
21,180 KB
testcase_47 AC 855 ms
20,992 KB
testcase_48 AC 831 ms
20,988 KB
testcase_49 AC 757 ms
21,120 KB
testcase_50 AC 829 ms
20,928 KB
testcase_51 AC 794 ms
20,988 KB
testcase_52 AC 828 ms
20,796 KB
testcase_53 AC 877 ms
21,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1110
from bisect import *
n,d=map(int,input().split())
a=[]
for i in range(n):
 a.append(int(input()))
b=sorted(a)
for i in range(n):
 print(bisect_right(b,a[i]-d))
0