結果

問題 No.1110 好きな歌
ユーザー rlangevinrlangevin
提出日時 2023-01-03 12:10:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 290 ms / 5,000 ms
コード長 254 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 92,480 KB
最終ジャッジ日時 2024-05-05 07:07:57
合計ジャッジ時間 10,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,760 KB
testcase_01 AC 39 ms
53,248 KB
testcase_02 AC 39 ms
53,504 KB
testcase_03 AC 40 ms
53,376 KB
testcase_04 AC 40 ms
53,888 KB
testcase_05 AC 40 ms
53,504 KB
testcase_06 AC 39 ms
53,376 KB
testcase_07 AC 40 ms
53,504 KB
testcase_08 AC 40 ms
53,376 KB
testcase_09 AC 40 ms
53,504 KB
testcase_10 AC 40 ms
53,248 KB
testcase_11 AC 40 ms
53,248 KB
testcase_12 AC 42 ms
53,760 KB
testcase_13 AC 40 ms
53,624 KB
testcase_14 AC 51 ms
61,312 KB
testcase_15 AC 47 ms
60,288 KB
testcase_16 AC 49 ms
61,312 KB
testcase_17 AC 51 ms
62,720 KB
testcase_18 AC 40 ms
53,504 KB
testcase_19 AC 52 ms
63,232 KB
testcase_20 AC 53 ms
63,104 KB
testcase_21 AC 49 ms
60,928 KB
testcase_22 AC 50 ms
62,208 KB
testcase_23 AC 45 ms
60,016 KB
testcase_24 AC 184 ms
84,572 KB
testcase_25 AC 213 ms
88,116 KB
testcase_26 AC 150 ms
81,408 KB
testcase_27 AC 210 ms
88,680 KB
testcase_28 AC 146 ms
83,284 KB
testcase_29 AC 250 ms
87,032 KB
testcase_30 AC 135 ms
83,792 KB
testcase_31 AC 119 ms
80,768 KB
testcase_32 AC 250 ms
89,464 KB
testcase_33 AC 142 ms
84,840 KB
testcase_34 AC 195 ms
84,708 KB
testcase_35 AC 218 ms
92,408 KB
testcase_36 AC 86 ms
77,568 KB
testcase_37 AC 129 ms
81,408 KB
testcase_38 AC 248 ms
88,572 KB
testcase_39 AC 203 ms
84,196 KB
testcase_40 AC 192 ms
88,172 KB
testcase_41 AC 85 ms
76,800 KB
testcase_42 AC 219 ms
89,076 KB
testcase_43 AC 243 ms
88,188 KB
testcase_44 AC 229 ms
92,344 KB
testcase_45 AC 270 ms
92,472 KB
testcase_46 AC 258 ms
92,220 KB
testcase_47 AC 284 ms
92,476 KB
testcase_48 AC 255 ms
92,216 KB
testcase_49 AC 211 ms
92,096 KB
testcase_50 AC 263 ms
92,480 KB
testcase_51 AC 245 ms
92,352 KB
testcase_52 AC 264 ms
92,088 KB
testcase_53 AC 290 ms
92,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from bisect import *
from copy import *

N, D = map(int, readline().split())
A = []
for i in range(N):
    A.append(int(readline()))
B = deepcopy(A)
B.sort()
for i in range(N):
    print(bisect_right(B, A[i] - D))
0