結果

問題 No.1110 好きな歌
ユーザー mkawa2mkawa2
提出日時 2020-07-10 21:37:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 829 ms / 5,000 ms
コード長 956 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,036 KB
最終ジャッジ日時 2024-10-11 08:19:39
合計ジャッジ時間 20,385 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
11,520 KB
testcase_01 AC 36 ms
11,520 KB
testcase_02 AC 37 ms
11,520 KB
testcase_03 AC 35 ms
11,520 KB
testcase_04 AC 34 ms
11,648 KB
testcase_05 AC 35 ms
11,648 KB
testcase_06 AC 36 ms
11,520 KB
testcase_07 AC 35 ms
11,648 KB
testcase_08 AC 35 ms
11,520 KB
testcase_09 AC 34 ms
11,648 KB
testcase_10 AC 38 ms
11,648 KB
testcase_11 AC 35 ms
11,648 KB
testcase_12 AC 36 ms
11,520 KB
testcase_13 AC 37 ms
11,392 KB
testcase_14 AC 38 ms
11,648 KB
testcase_15 AC 37 ms
11,520 KB
testcase_16 AC 37 ms
11,776 KB
testcase_17 AC 38 ms
11,776 KB
testcase_18 AC 36 ms
11,520 KB
testcase_19 AC 38 ms
11,776 KB
testcase_20 AC 37 ms
11,776 KB
testcase_21 AC 36 ms
11,904 KB
testcase_22 AC 37 ms
11,776 KB
testcase_23 AC 35 ms
11,520 KB
testcase_24 AC 429 ms
33,996 KB
testcase_25 AC 536 ms
38,532 KB
testcase_26 AC 263 ms
26,056 KB
testcase_27 AC 524 ms
38,384 KB
testcase_28 AC 276 ms
27,112 KB
testcase_29 AC 627 ms
43,744 KB
testcase_30 AC 272 ms
26,472 KB
testcase_31 AC 187 ms
20,960 KB
testcase_32 AC 711 ms
47,012 KB
testcase_33 AC 308 ms
28,436 KB
testcase_34 AC 465 ms
35,244 KB
testcase_35 AC 829 ms
47,012 KB
testcase_36 AC 90 ms
15,360 KB
testcase_37 AC 202 ms
22,472 KB
testcase_38 AC 653 ms
43,352 KB
testcase_39 AC 539 ms
35,420 KB
testcase_40 AC 628 ms
39,620 KB
testcase_41 AC 68 ms
14,080 KB
testcase_42 AC 665 ms
43,968 KB
testcase_43 AC 629 ms
43,044 KB
testcase_44 AC 728 ms
47,680 KB
testcase_45 AC 753 ms
49,424 KB
testcase_46 AC 750 ms
48,988 KB
testcase_47 AC 755 ms
50,704 KB
testcase_48 AC 790 ms
49,048 KB
testcase_49 AC 695 ms
46,560 KB
testcase_50 AC 742 ms
49,224 KB
testcase_51 AC 746 ms
48,408 KB
testcase_52 AC 765 ms
49,212 KB
testcase_53 AC 796 ms
51,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
from itertools import *
from bisect import *
from collections import *
from heapq import *
from fractions import Fraction
import sys

sys.setrecursionlimit(10 ** 6)

def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def SI(): return sys.stdin.readline()[:-1]
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
int1 = lambda x: int(x) - 1
def MI1(): return map(int1, sys.stdin.readline().split())
def LI1(): return list(map(int1, sys.stdin.readline().split()))
p2D = lambda x: print(*x, sep="\n")
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

n,d=MI()
q=deque()
aj=[(II(),i) for i in range(n)]
aj.sort()
ans=[0]*n
for i,(a,j) in enumerate(aj):
    while q and q[0]<=a-d:q.popleft()
    ans[j]=i-len(q)
    q.append(a)
print(*ans,sep="\n")
0