結果

問題 No.1110 好きな歌
ユーザー nephrologistnephrologist
提出日時 2020-07-10 21:47:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 663 ms / 5,000 ms
コード長 420 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 93,440 KB
最終ジャッジ日時 2024-10-11 08:46:40
合計ジャッジ時間 17,902 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 37 ms
52,164 KB
testcase_06 AC 38 ms
51,456 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 37 ms
51,712 KB
testcase_10 AC 42 ms
52,096 KB
testcase_11 AC 37 ms
52,096 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 38 ms
52,132 KB
testcase_14 AC 41 ms
53,248 KB
testcase_15 AC 40 ms
53,248 KB
testcase_16 AC 42 ms
52,992 KB
testcase_17 AC 43 ms
54,400 KB
testcase_18 AC 38 ms
52,224 KB
testcase_19 AC 46 ms
59,648 KB
testcase_20 AC 43 ms
54,272 KB
testcase_21 AC 39 ms
53,248 KB
testcase_22 AC 43 ms
54,016 KB
testcase_23 AC 40 ms
52,992 KB
testcase_24 AC 381 ms
86,016 KB
testcase_25 AC 456 ms
88,452 KB
testcase_26 AC 247 ms
81,920 KB
testcase_27 AC 454 ms
88,176 KB
testcase_28 AC 272 ms
83,072 KB
testcase_29 AC 536 ms
90,624 KB
testcase_30 AC 272 ms
82,688 KB
testcase_31 AC 186 ms
80,220 KB
testcase_32 AC 578 ms
91,720 KB
testcase_33 AC 324 ms
82,960 KB
testcase_34 AC 411 ms
86,460 KB
testcase_35 AC 630 ms
91,860 KB
testcase_36 AC 108 ms
77,696 KB
testcase_37 AC 193 ms
80,256 KB
testcase_38 AC 516 ms
89,984 KB
testcase_39 AC 393 ms
86,368 KB
testcase_40 AC 499 ms
88,268 KB
testcase_41 AC 85 ms
76,388 KB
testcase_42 AC 571 ms
90,756 KB
testcase_43 AC 516 ms
89,928 KB
testcase_44 AC 642 ms
91,892 KB
testcase_45 AC 644 ms
93,408 KB
testcase_46 AC 639 ms
93,440 KB
testcase_47 AC 639 ms
93,224 KB
testcase_48 AC 643 ms
92,968 KB
testcase_49 AC 637 ms
90,376 KB
testcase_50 AC 651 ms
93,440 KB
testcase_51 AC 646 ms
92,212 KB
testcase_52 AC 653 ms
93,440 KB
testcase_53 AC 663 ms
93,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

n, d = map(int, input().split())

A = [(0, 0)] * (n)
for i in range(n):
    val = int(input())
    A[i] = (val, i)
A.sort(reverse=True)

ans = [0] * (n)
lim = 0
for i in range(n):
    while lim < n:
        if A[i][0] - A[lim][0] < d:
            lim += 1
        else:
            break
    # print(i, A[i], lim)
    ans[A[i][1]] = max(n - (lim), 0)
print(*ans, sep="\n")
0