結果

問題 No.1110 好きな歌
ユーザー tanon710tanon710
提出日時 2020-07-10 21:44:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 522 ms / 5,000 ms
コード長 382 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 105,252 KB
最終ジャッジ日時 2024-10-11 08:40:32
合計ジャッジ時間 15,900 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 38 ms
51,840 KB
testcase_08 AC 37 ms
52,260 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 39 ms
52,352 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 48 ms
59,904 KB
testcase_15 AC 45 ms
59,264 KB
testcase_16 AC 48 ms
60,032 KB
testcase_17 AC 52 ms
62,080 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 51 ms
61,780 KB
testcase_20 AC 52 ms
61,696 KB
testcase_21 AC 47 ms
59,648 KB
testcase_22 AC 52 ms
61,440 KB
testcase_23 AC 44 ms
58,624 KB
testcase_24 AC 325 ms
90,112 KB
testcase_25 AC 377 ms
93,436 KB
testcase_26 AC 225 ms
85,136 KB
testcase_27 AC 371 ms
92,820 KB
testcase_28 AC 251 ms
88,176 KB
testcase_29 AC 431 ms
95,740 KB
testcase_30 AC 234 ms
88,228 KB
testcase_31 AC 166 ms
82,276 KB
testcase_32 AC 503 ms
105,252 KB
testcase_33 AC 247 ms
87,708 KB
testcase_34 AC 352 ms
96,788 KB
testcase_35 AC 495 ms
99,968 KB
testcase_36 AC 107 ms
78,692 KB
testcase_37 AC 185 ms
83,020 KB
testcase_38 AC 437 ms
95,720 KB
testcase_39 AC 346 ms
90,588 KB
testcase_40 AC 405 ms
95,104 KB
testcase_41 AC 94 ms
77,952 KB
testcase_42 AC 477 ms
101,720 KB
testcase_43 AC 427 ms
95,360 KB
testcase_44 AC 493 ms
100,096 KB
testcase_45 AC 512 ms
99,712 KB
testcase_46 AC 508 ms
99,968 KB
testcase_47 AC 522 ms
99,968 KB
testcase_48 AC 506 ms
99,924 KB
testcase_49 AC 480 ms
100,444 KB
testcase_50 AC 514 ms
99,704 KB
testcase_51 AC 502 ms
99,912 KB
testcase_52 AC 505 ms
99,576 KB
testcase_53 AC 516 ms
100,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import bisect
import sys
input=sys.stdin.readline

n,d=map(int,input().split())
arr=[[int(input()),i] for i in range(n)]
arr=sorted(arr,key=lambda x:x[0])
ans=[0]*n
vals=[0]*n
for i in range(n):
    vals[i]=arr[i][0]
for i in range(n):
    cnt=bisect.bisect_right(vals,arr[i][0]-d)
    ans[arr[i][1]]=cnt
for i in range(n):
    print(ans[i])
0