結果

問題 No.1110 好きな歌
ユーザー xuanjixuanji
提出日時 2020-07-10 21:52:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 342 ms / 5,000 ms
コード長 414 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 154,240 KB
最終ジャッジ日時 2024-10-11 08:56:37
合計ジャッジ時間 11,210 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,248 KB
testcase_01 AC 41 ms
52,992 KB
testcase_02 AC 41 ms
53,504 KB
testcase_03 AC 44 ms
53,504 KB
testcase_04 AC 43 ms
53,504 KB
testcase_05 AC 41 ms
53,632 KB
testcase_06 AC 41 ms
53,376 KB
testcase_07 AC 42 ms
53,376 KB
testcase_08 AC 40 ms
52,992 KB
testcase_09 AC 42 ms
53,248 KB
testcase_10 AC 41 ms
53,248 KB
testcase_11 AC 42 ms
53,636 KB
testcase_12 AC 41 ms
53,888 KB
testcase_13 AC 41 ms
53,888 KB
testcase_14 AC 45 ms
54,784 KB
testcase_15 AC 43 ms
54,272 KB
testcase_16 AC 46 ms
54,656 KB
testcase_17 AC 47 ms
55,808 KB
testcase_18 AC 42 ms
53,760 KB
testcase_19 AC 50 ms
61,056 KB
testcase_20 AC 48 ms
55,424 KB
testcase_21 AC 45 ms
54,784 KB
testcase_22 AC 46 ms
55,424 KB
testcase_23 AC 43 ms
54,272 KB
testcase_24 AC 209 ms
121,704 KB
testcase_25 AC 227 ms
115,176 KB
testcase_26 AC 154 ms
107,144 KB
testcase_27 AC 228 ms
112,364 KB
testcase_28 AC 154 ms
101,376 KB
testcase_29 AC 279 ms
134,912 KB
testcase_30 AC 150 ms
106,368 KB
testcase_31 AC 121 ms
94,592 KB
testcase_32 AC 298 ms
147,208 KB
testcase_33 AC 165 ms
110,816 KB
testcase_34 AC 211 ms
122,604 KB
testcase_35 AC 287 ms
148,096 KB
testcase_36 AC 87 ms
81,408 KB
testcase_37 AC 134 ms
97,280 KB
testcase_38 AC 273 ms
135,296 KB
testcase_39 AC 231 ms
122,988 KB
testcase_40 AC 238 ms
132,232 KB
testcase_41 AC 84 ms
78,208 KB
testcase_42 AC 285 ms
145,280 KB
testcase_43 AC 266 ms
134,528 KB
testcase_44 AC 308 ms
145,148 KB
testcase_45 AC 315 ms
136,700 KB
testcase_46 AC 317 ms
135,168 KB
testcase_47 AC 342 ms
122,372 KB
testcase_48 AC 329 ms
138,752 KB
testcase_49 AC 298 ms
154,240 KB
testcase_50 AC 321 ms
138,120 KB
testcase_51 AC 312 ms
137,992 KB
testcase_52 AC 317 ms
134,536 KB
testcase_53 AC 335 ms
123,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

from sys import stdin, stdout
 
def input():
    return stdin.readline().strip()

from collections import defaultdict

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

A = []
for _ in range(N):
    A += [int(input())]

ans = dict()

sorted_A = sorted(A)
set_A = sorted(list(set(A)))

i = 0
for a in set_A:
    while a - sorted_A[i] >= D: i += 1
    ans[a] = i

for a in A:
    print(ans[a])
0