結果

問題 No.1110 好きな歌
ユーザー tyawanmusityawanmusi
提出日時 2020-07-10 21:33:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,288 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 55,280 KB
最終ジャッジ日時 2024-10-11 08:03:07
合計ジャッジ時間 30,128 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 33 ms
10,880 KB
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 32 ms
10,880 KB
testcase_17 AC 34 ms
10,880 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 34 ms
11,008 KB
testcase_20 AC 32 ms
10,880 KB
testcase_21 AC 31 ms
11,008 KB
testcase_22 AC 33 ms
10,880 KB
testcase_23 AC 31 ms
10,880 KB
testcase_24 AC 715 ms
35,092 KB
testcase_25 AC 862 ms
38,428 KB
testcase_26 AC 444 ms
24,500 KB
testcase_27 AC 867 ms
38,072 KB
testcase_28 AC 471 ms
25,604 KB
testcase_29 AC 1,061 ms
40,356 KB
testcase_30 AC 472 ms
25,736 KB
testcase_31 AC 290 ms
21,752 KB
testcase_32 AC 1,154 ms
52,960 KB
testcase_33 AC 519 ms
32,428 KB
testcase_34 AC 759 ms
36,528 KB
testcase_35 AC 1,195 ms
55,112 KB
testcase_36 AC 140 ms
14,644 KB
testcase_37 AC 346 ms
22,480 KB
testcase_38 AC 1,028 ms
40,056 KB
testcase_39 AC 740 ms
35,568 KB
testcase_40 AC 879 ms
39,672 KB
testcase_41 AC 88 ms
13,412 KB
testcase_42 AC 1,077 ms
52,672 KB
testcase_43 AC 1,038 ms
40,268 KB
testcase_44 AC 1,181 ms
55,188 KB
testcase_45 AC 1,255 ms
55,144 KB
testcase_46 AC 1,221 ms
55,224 KB
testcase_47 AC 1,279 ms
55,184 KB
testcase_48 AC 1,240 ms
55,240 KB
testcase_49 AC 1,120 ms
55,204 KB
testcase_50 AC 1,223 ms
55,104 KB
testcase_51 AC 1,223 ms
55,280 KB
testcase_52 AC 1,270 ms
55,152 KB
testcase_53 AC 1,288 ms
55,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left,bisect_right
def position_zip(a,flag):
  j=0
  d={}
  for i in sorted(a):
    if i in d:continue
    d[i]=j
    j+=1
  if flag==1:return d
  return [d[i] for i in a]
n,d=map(int,input().split())
a=[int(input())for _ in range(n)]+[-10**10]
b=sorted(list(set(a)))
da=position_zip(a,1)
p=[0]*len(da)
for i in a:p[da[i]]+=1
for i in range(1,len(p)):p[i]+=p[i-1]
for i in a[:-1]:
  j=bisect_right(b,i-d)-1
  print(p[j]-1)
0