結果

問題 No.1110 好きな歌
ユーザー mlihua09mlihua09
提出日時 2020-09-13 02:32:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 291 ms / 5,000 ms
コード長 168 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,408 KB
最終ジャッジ日時 2024-06-10 19:34:19
合計ジャッジ時間 10,636 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 36 ms
51,712 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 39 ms
51,712 KB
testcase_08 AC 40 ms
52,352 KB
testcase_09 AC 37 ms
51,712 KB
testcase_10 AC 37 ms
51,712 KB
testcase_11 AC 37 ms
51,840 KB
testcase_12 AC 36 ms
51,840 KB
testcase_13 AC 36 ms
51,840 KB
testcase_14 AC 51 ms
61,952 KB
testcase_15 AC 47 ms
59,520 KB
testcase_16 AC 53 ms
61,824 KB
testcase_17 AC 57 ms
63,872 KB
testcase_18 AC 39 ms
52,608 KB
testcase_19 AC 61 ms
65,920 KB
testcase_20 AC 59 ms
64,000 KB
testcase_21 AC 49 ms
60,288 KB
testcase_22 AC 54 ms
63,360 KB
testcase_23 AC 45 ms
59,008 KB
testcase_24 AC 186 ms
78,976 KB
testcase_25 AC 207 ms
79,152 KB
testcase_26 AC 155 ms
78,080 KB
testcase_27 AC 210 ms
79,104 KB
testcase_28 AC 149 ms
78,564 KB
testcase_29 AC 238 ms
80,144 KB
testcase_30 AC 135 ms
78,976 KB
testcase_31 AC 121 ms
77,568 KB
testcase_32 AC 254 ms
80,640 KB
testcase_33 AC 151 ms
78,480 KB
testcase_34 AC 196 ms
79,104 KB
testcase_35 AC 221 ms
81,280 KB
testcase_36 AC 94 ms
76,544 KB
testcase_37 AC 133 ms
77,696 KB
testcase_38 AC 238 ms
80,256 KB
testcase_39 AC 205 ms
78,876 KB
testcase_40 AC 189 ms
79,872 KB
testcase_41 AC 95 ms
76,416 KB
testcase_42 AC 223 ms
80,120 KB
testcase_43 AC 248 ms
79,956 KB
testcase_44 AC 237 ms
80,920 KB
testcase_45 AC 283 ms
80,896 KB
testcase_46 AC 254 ms
81,152 KB
testcase_47 AC 291 ms
80,896 KB
testcase_48 AC 262 ms
80,896 KB
testcase_49 AC 212 ms
81,408 KB
testcase_50 AC 265 ms
81,024 KB
testcase_51 AC 244 ms
80,696 KB
testcase_52 AC 259 ms
80,576 KB
testcase_53 AC 285 ms
81,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N, D = map(int, input().split())

from bisect import bisect

A = [int(input()) for i in range(N)]

a = A.copy()


A.sort()




for i in a:
    print(bisect(A, i - D))
0