結果

問題 No.1110 好きな歌
ユーザー roarisroaris
提出日時 2020-07-10 21:30:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 265 ms / 5,000 ms
コード長 220 bytes
コンパイル時間 517 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 81,152 KB
最終ジャッジ日時 2024-10-11 07:54:30
合計ジャッジ時間 10,136 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,248 KB
testcase_01 AC 44 ms
53,248 KB
testcase_02 AC 43 ms
53,504 KB
testcase_03 AC 42 ms
53,504 KB
testcase_04 AC 44 ms
53,632 KB
testcase_05 AC 44 ms
53,504 KB
testcase_06 AC 43 ms
53,120 KB
testcase_07 AC 43 ms
53,632 KB
testcase_08 AC 44 ms
53,376 KB
testcase_09 AC 42 ms
53,120 KB
testcase_10 AC 44 ms
53,120 KB
testcase_11 AC 43 ms
53,632 KB
testcase_12 AC 42 ms
53,248 KB
testcase_13 AC 46 ms
53,248 KB
testcase_14 AC 52 ms
60,928 KB
testcase_15 AC 50 ms
59,776 KB
testcase_16 AC 52 ms
60,928 KB
testcase_17 AC 55 ms
62,464 KB
testcase_18 AC 43 ms
53,888 KB
testcase_19 AC 55 ms
62,592 KB
testcase_20 AC 57 ms
61,824 KB
testcase_21 AC 51 ms
60,288 KB
testcase_22 AC 56 ms
61,568 KB
testcase_23 AC 51 ms
59,520 KB
testcase_24 AC 167 ms
78,976 KB
testcase_25 AC 194 ms
79,360 KB
testcase_26 AC 142 ms
78,884 KB
testcase_27 AC 195 ms
79,232 KB
testcase_28 AC 139 ms
78,984 KB
testcase_29 AC 230 ms
79,744 KB
testcase_30 AC 123 ms
78,592 KB
testcase_31 AC 113 ms
77,440 KB
testcase_32 AC 236 ms
80,256 KB
testcase_33 AC 127 ms
78,352 KB
testcase_34 AC 180 ms
78,976 KB
testcase_35 AC 198 ms
80,768 KB
testcase_36 AC 82 ms
76,416 KB
testcase_37 AC 119 ms
77,580 KB
testcase_38 AC 229 ms
80,512 KB
testcase_39 AC 187 ms
79,392 KB
testcase_40 AC 170 ms
79,440 KB
testcase_41 AC 87 ms
76,416 KB
testcase_42 AC 196 ms
80,000 KB
testcase_43 AC 227 ms
80,384 KB
testcase_44 AC 206 ms
81,024 KB
testcase_45 AC 252 ms
80,768 KB
testcase_46 AC 228 ms
81,152 KB
testcase_47 AC 265 ms
80,896 KB
testcase_48 AC 234 ms
81,076 KB
testcase_49 AC 190 ms
81,024 KB
testcase_50 AC 238 ms
80,512 KB
testcase_51 AC 218 ms
80,768 KB
testcase_52 AC 236 ms
80,988 KB
testcase_53 AC 262 ms
80,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *
from bisect import *

N, D = map(int, input().split())
A = [int(input()) for _ in range(N)]
B = A[:]
B.sort()

for Ai in A:
    print(bisect_right(B, Ai-D))
0