結果

問題 No.1110 好きな歌
ユーザー now4estnow4est
提出日時 2020-07-11 11:35:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 5,000 ms
コード長 168 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 118,400 KB
最終ジャッジ日時 2024-10-12 20:44:12
合計ジャッジ時間 9,393 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 37 ms
51,712 KB
testcase_11 AC 41 ms
52,096 KB
testcase_12 AC 36 ms
52,096 KB
testcase_13 AC 37 ms
52,096 KB
testcase_14 AC 43 ms
58,880 KB
testcase_15 AC 39 ms
52,992 KB
testcase_16 AC 44 ms
59,136 KB
testcase_17 AC 47 ms
60,288 KB
testcase_18 AC 37 ms
52,480 KB
testcase_19 AC 42 ms
59,008 KB
testcase_20 AC 45 ms
59,520 KB
testcase_21 AC 46 ms
59,520 KB
testcase_22 AC 46 ms
59,392 KB
testcase_23 AC 38 ms
52,608 KB
testcase_24 AC 163 ms
100,800 KB
testcase_25 AC 179 ms
105,088 KB
testcase_26 AC 133 ms
91,128 KB
testcase_27 AC 184 ms
105,344 KB
testcase_28 AC 126 ms
93,056 KB
testcase_29 AC 216 ms
109,312 KB
testcase_30 AC 109 ms
93,120 KB
testcase_31 AC 101 ms
84,816 KB
testcase_32 AC 221 ms
112,768 KB
testcase_33 AC 109 ms
95,540 KB
testcase_34 AC 156 ms
102,144 KB
testcase_35 AC 172 ms
118,068 KB
testcase_36 AC 71 ms
78,228 KB
testcase_37 AC 116 ms
85,828 KB
testcase_38 AC 223 ms
109,440 KB
testcase_39 AC 181 ms
101,760 KB
testcase_40 AC 144 ms
109,312 KB
testcase_41 AC 80 ms
76,436 KB
testcase_42 AC 175 ms
113,024 KB
testcase_43 AC 208 ms
108,896 KB
testcase_44 AC 193 ms
117,536 KB
testcase_45 AC 236 ms
117,872 KB
testcase_46 AC 221 ms
117,760 KB
testcase_47 AC 268 ms
117,656 KB
testcase_48 AC 232 ms
118,016 KB
testcase_49 AC 158 ms
118,400 KB
testcase_50 AC 223 ms
117,120 KB
testcase_51 AC 209 ms
117,376 KB
testcase_52 AC 244 ms
117,632 KB
testcase_53 AC 270 ms
117,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

_,D,*A = map(int,open(0).read().split())

B = sorted(A)

for a in A:
    if a <= D:
        print(0)
    else:
        print(bisect.bisect_right(B, a-D))
0