結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 32 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 33 ms
10,624 KB
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 33 ms
10,624 KB
testcase_17 AC 34 ms
10,624 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 34 ms
10,752 KB
testcase_20 AC 34 ms
10,752 KB
testcase_21 AC 33 ms
10,752 KB
testcase_22 AC 33 ms
10,752 KB
testcase_23 AC 32 ms
10,880 KB
testcase_24 AC 482 ms
16,704 KB
testcase_25 AC 597 ms
18,024 KB
testcase_26 AC 328 ms
14,464 KB
testcase_27 AC 606 ms
18,184 KB
testcase_28 AC 338 ms
14,976 KB
testcase_29 AC 739 ms
19,264 KB
testcase_30 AC 313 ms
14,976 KB
testcase_31 AC 211 ms
13,312 KB
testcase_32 AC 804 ms
20,020 KB
testcase_33 AC 348 ms
15,872 KB
testcase_34 AC 502 ms
17,280 KB
testcase_35 AC 713 ms
21,036 KB
testcase_36 AC 104 ms
12,032 KB
testcase_37 AC 245 ms
13,440 KB
testcase_38 AC 706 ms
19,272 KB
testcase_39 AC 520 ms
17,116 KB
testcase_40 AC 563 ms
18,612 KB
testcase_41 AC 73 ms
11,264 KB
testcase_42 AC 658 ms
19,720 KB
testcase_43 AC 675 ms
19,192 KB
testcase_44 AC 744 ms
20,996 KB
testcase_45 AC 827 ms
20,996 KB
testcase_46 AC 802 ms
21,180 KB
testcase_47 AC 882 ms
21,000 KB
testcase_48 AC 802 ms
20,996 KB
testcase_49 AC 681 ms
21,128 KB
testcase_50 AC 817 ms
20,928 KB
testcase_51 AC 796 ms
21,124 KB
testcase_52 AC 814 ms
21,052 KB
testcase_53 AC 909 ms
21,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d=map(int,input().split())
a=[int(input()) for _ in range(n)]
b=a[:]
b.sort()
from bisect import bisect_left,bisect_right
for aa in a:
  if aa-d>=0:
    print(bisect_right(b,aa-d))
  else:
    print(0)
0