結果

問題 No.1110 好きな歌
ユーザー takakintakakin
提出日時 2020-07-10 21:32:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 711 ms / 5,000 ms
コード長 245 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 38,412 KB
最終ジャッジ日時 2024-10-11 08:01:09
合計ジャッジ時間 17,699 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 AC 33 ms
10,880 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 33 ms
10,880 KB
testcase_20 AC 32 ms
10,880 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 32 ms
10,752 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 371 ms
24,608 KB
testcase_25 AC 455 ms
26,536 KB
testcase_26 AC 248 ms
18,700 KB
testcase_27 AC 469 ms
26,536 KB
testcase_28 AC 259 ms
19,456 KB
testcase_29 AC 576 ms
28,088 KB
testcase_30 AC 246 ms
19,476 KB
testcase_31 AC 166 ms
17,680 KB
testcase_32 AC 623 ms
38,332 KB
testcase_33 AC 274 ms
24,468 KB
testcase_34 AC 399 ms
25,380 KB
testcase_35 AC 566 ms
38,304 KB
testcase_36 AC 82 ms
13,036 KB
testcase_37 AC 188 ms
17,556 KB
testcase_38 AC 574 ms
27,812 KB
testcase_39 AC 408 ms
24,868 KB
testcase_40 AC 443 ms
27,808 KB
testcase_41 AC 61 ms
12,408 KB
testcase_42 AC 525 ms
38,404 KB
testcase_43 AC 557 ms
27,940 KB
testcase_44 AC 602 ms
38,308 KB
testcase_45 AC 682 ms
38,316 KB
testcase_46 AC 638 ms
38,312 KB
testcase_47 AC 703 ms
38,332 KB
testcase_48 AC 654 ms
38,412 KB
testcase_49 AC 536 ms
38,252 KB
testcase_50 AC 658 ms
38,272 KB
testcase_51 AC 634 ms
38,308 KB
testcase_52 AC 665 ms
38,360 KB
testcase_53 AC 711 ms
38,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,d=map(int,input().split())
D=dict()
A=[]
for i in range(n):
  a=int(input())
  D[i]=a
  A.append(a)
A.sort()

import bisect

for i in range(n):
  a=D[i]
  print(bisect.bisect_right(A,a-d))
0