結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 37 ms
51,968 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 39 ms
51,712 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 39 ms
51,584 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 41 ms
51,968 KB
testcase_12 AC 39 ms
51,840 KB
testcase_13 AC 40 ms
51,584 KB
testcase_14 AC 48 ms
59,136 KB
testcase_15 AC 47 ms
58,624 KB
testcase_16 AC 48 ms
59,008 KB
testcase_17 AC 51 ms
60,416 KB
testcase_18 AC 41 ms
51,968 KB
testcase_19 AC 50 ms
60,416 KB
testcase_20 AC 51 ms
60,288 KB
testcase_21 AC 47 ms
59,008 KB
testcase_22 AC 49 ms
60,032 KB
testcase_23 AC 43 ms
57,856 KB
testcase_24 AC 171 ms
100,608 KB
testcase_25 AC 189 ms
105,088 KB
testcase_26 AC 136 ms
90,880 KB
testcase_27 AC 188 ms
104,448 KB
testcase_28 AC 133 ms
92,544 KB
testcase_29 AC 223 ms
108,928 KB
testcase_30 AC 123 ms
92,160 KB
testcase_31 AC 105 ms
84,096 KB
testcase_32 AC 230 ms
113,024 KB
testcase_33 AC 127 ms
95,104 KB
testcase_34 AC 179 ms
101,376 KB
testcase_35 AC 200 ms
117,888 KB
testcase_36 AC 77 ms
78,464 KB
testcase_37 AC 115 ms
85,248 KB
testcase_38 AC 215 ms
109,440 KB
testcase_39 AC 179 ms
101,120 KB
testcase_40 AC 172 ms
108,672 KB
testcase_41 AC 76 ms
76,288 KB
testcase_42 AC 199 ms
112,768 KB
testcase_43 AC 227 ms
109,184 KB
testcase_44 AC 213 ms
117,760 KB
testcase_45 AC 235 ms
117,628 KB
testcase_46 AC 211 ms
117,768 KB
testcase_47 AC 250 ms
118,016 KB
testcase_48 AC 229 ms
117,504 KB
testcase_49 AC 187 ms
118,784 KB
testcase_50 AC 231 ms
117,248 KB
testcase_51 AC 223 ms
117,632 KB
testcase_52 AC 232 ms
117,376 KB
testcase_53 AC 252 ms
117,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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