結果

問題 No.1110 好きな歌
ユーザー H20H20
提出日時 2021-12-27 12:43:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 310 ms / 5,000 ms
コード長 163 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 84,400 KB
最終ジャッジ日時 2024-09-25 06:19:24
合計ジャッジ時間 11,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 36 ms
51,584 KB
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 36 ms
51,968 KB
testcase_13 AC 35 ms
51,968 KB
testcase_14 AC 51 ms
61,568 KB
testcase_15 AC 44 ms
59,392 KB
testcase_16 AC 49 ms
61,824 KB
testcase_17 AC 55 ms
64,000 KB
testcase_18 AC 36 ms
52,352 KB
testcase_19 AC 56 ms
65,920 KB
testcase_20 AC 53 ms
64,256 KB
testcase_21 AC 48 ms
60,416 KB
testcase_22 AC 53 ms
62,848 KB
testcase_23 AC 43 ms
58,624 KB
testcase_24 AC 188 ms
80,744 KB
testcase_25 AC 220 ms
81,776 KB
testcase_26 AC 153 ms
79,100 KB
testcase_27 AC 215 ms
81,880 KB
testcase_28 AC 148 ms
80,148 KB
testcase_29 AC 245 ms
81,732 KB
testcase_30 AC 143 ms
80,140 KB
testcase_31 AC 120 ms
79,360 KB
testcase_32 AC 265 ms
83,556 KB
testcase_33 AC 148 ms
80,664 KB
testcase_34 AC 203 ms
80,808 KB
testcase_35 AC 235 ms
84,152 KB
testcase_36 AC 94 ms
76,928 KB
testcase_37 AC 132 ms
79,360 KB
testcase_38 AC 256 ms
82,124 KB
testcase_39 AC 206 ms
80,876 KB
testcase_40 AC 207 ms
81,612 KB
testcase_41 AC 90 ms
76,416 KB
testcase_42 AC 235 ms
83,292 KB
testcase_43 AC 252 ms
81,996 KB
testcase_44 AC 247 ms
83,908 KB
testcase_45 AC 294 ms
83,892 KB
testcase_46 AC 273 ms
84,400 KB
testcase_47 AC 299 ms
83,892 KB
testcase_48 AC 268 ms
84,288 KB
testcase_49 AC 222 ms
84,280 KB
testcase_50 AC 271 ms
84,036 KB
testcase_51 AC 255 ms
83,896 KB
testcase_52 AC 272 ms
83,644 KB
testcase_53 AC 310 ms
84,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N,D = map(int,input().split())
A = []
for _ in range(N):
    A.append(int(input()))
B = list(A)
B.sort()
for a in A:
    print(bisect.bisect(B,a-D))
0