結果

問題 No.1110 好きな歌
ユーザー anagohirameanagohirame
提出日時 2020-07-10 22:08:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 903 ms / 5,000 ms
コード長 303 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 123,068 KB
最終ジャッジ日時 2024-10-11 09:24:45
合計ジャッジ時間 23,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,264 KB
testcase_01 AC 43 ms
55,128 KB
testcase_02 AC 43 ms
54,920 KB
testcase_03 AC 42 ms
54,624 KB
testcase_04 AC 43 ms
54,148 KB
testcase_05 AC 42 ms
54,872 KB
testcase_06 AC 48 ms
54,428 KB
testcase_07 AC 43 ms
55,136 KB
testcase_08 AC 42 ms
54,796 KB
testcase_09 AC 43 ms
55,292 KB
testcase_10 AC 42 ms
55,380 KB
testcase_11 AC 42 ms
54,784 KB
testcase_12 AC 43 ms
53,800 KB
testcase_13 AC 41 ms
53,796 KB
testcase_14 AC 57 ms
65,996 KB
testcase_15 AC 50 ms
61,556 KB
testcase_16 AC 57 ms
65,620 KB
testcase_17 AC 62 ms
67,724 KB
testcase_18 AC 44 ms
55,032 KB
testcase_19 AC 67 ms
69,572 KB
testcase_20 AC 62 ms
68,384 KB
testcase_21 AC 53 ms
63,116 KB
testcase_22 AC 60 ms
67,432 KB
testcase_23 AC 50 ms
61,512 KB
testcase_24 AC 516 ms
102,128 KB
testcase_25 AC 624 ms
113,028 KB
testcase_26 AC 357 ms
92,352 KB
testcase_27 AC 612 ms
112,524 KB
testcase_28 AC 376 ms
93,280 KB
testcase_29 AC 733 ms
111,080 KB
testcase_30 AC 356 ms
93,368 KB
testcase_31 AC 263 ms
86,112 KB
testcase_32 AC 818 ms
123,068 KB
testcase_33 AC 389 ms
100,448 KB
testcase_34 AC 558 ms
103,076 KB
testcase_35 AC 781 ms
119,900 KB
testcase_36 AC 143 ms
80,056 KB
testcase_37 AC 278 ms
90,100 KB
testcase_38 AC 728 ms
109,884 KB
testcase_39 AC 551 ms
102,396 KB
testcase_40 AC 621 ms
109,772 KB
testcase_41 AC 122 ms
78,668 KB
testcase_42 AC 718 ms
120,956 KB
testcase_43 AC 724 ms
110,952 KB
testcase_44 AC 809 ms
119,652 KB
testcase_45 AC 858 ms
120,036 KB
testcase_46 AC 835 ms
119,916 KB
testcase_47 AC 903 ms
119,664 KB
testcase_48 AC 866 ms
119,404 KB
testcase_49 AC 770 ms
119,408 KB
testcase_50 AC 863 ms
119,148 KB
testcase_51 AC 828 ms
119,660 KB
testcase_52 AC 863 ms
119,400 KB
testcase_53 AC 897 ms
120,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect
from collections import Counter
n, d = map(int, input().split())
a = [int(input()) for _ in range(n)]
c = sorted(list(Counter(a).items()))
keys, values = [-10**20], [0]
for i, j in c:
	keys.append(i)
	values.append(values[-1]+j)

for x in a:
	print(values[bisect(keys, x-d)-1])
0