結果

問題 No.1110 好きな歌
ユーザー trineutrontrineutron
提出日時 2019-10-23 10:01:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 770 ms / 5,000 ms
コード長 238 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 86,724 KB
最終ジャッジ日時 2024-09-13 10:17:05
合計ジャッジ時間 20,657 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,688 KB
testcase_01 AC 43 ms
52,440 KB
testcase_02 AC 38 ms
52,928 KB
testcase_03 AC 40 ms
51,936 KB
testcase_04 AC 37 ms
53,032 KB
testcase_05 AC 38 ms
52,312 KB
testcase_06 AC 37 ms
52,516 KB
testcase_07 AC 38 ms
52,464 KB
testcase_08 AC 39 ms
53,160 KB
testcase_09 AC 38 ms
53,348 KB
testcase_10 AC 37 ms
52,972 KB
testcase_11 AC 38 ms
53,444 KB
testcase_12 AC 38 ms
52,516 KB
testcase_13 AC 38 ms
52,416 KB
testcase_14 AC 53 ms
62,948 KB
testcase_15 AC 49 ms
60,296 KB
testcase_16 AC 53 ms
63,412 KB
testcase_17 AC 61 ms
66,452 KB
testcase_18 AC 39 ms
53,704 KB
testcase_19 AC 62 ms
67,236 KB
testcase_20 AC 59 ms
67,472 KB
testcase_21 AC 50 ms
62,180 KB
testcase_22 AC 59 ms
66,536 KB
testcase_23 AC 46 ms
59,636 KB
testcase_24 AC 453 ms
82,264 KB
testcase_25 AC 551 ms
83,200 KB
testcase_26 AC 311 ms
79,872 KB
testcase_27 AC 544 ms
83,140 KB
testcase_28 AC 330 ms
80,256 KB
testcase_29 AC 615 ms
84,224 KB
testcase_30 AC 333 ms
80,256 KB
testcase_31 AC 241 ms
78,848 KB
testcase_32 AC 705 ms
85,316 KB
testcase_33 AC 365 ms
81,024 KB
testcase_34 AC 492 ms
82,736 KB
testcase_35 AC 725 ms
86,400 KB
testcase_36 AC 132 ms
77,568 KB
testcase_37 AC 247 ms
79,160 KB
testcase_38 AC 621 ms
84,608 KB
testcase_39 AC 481 ms
82,652 KB
testcase_40 AC 569 ms
84,028 KB
testcase_41 AC 111 ms
77,284 KB
testcase_42 AC 667 ms
85,248 KB
testcase_43 AC 631 ms
84,212 KB
testcase_44 AC 739 ms
86,272 KB
testcase_45 AC 752 ms
86,144 KB
testcase_46 AC 749 ms
86,424 KB
testcase_47 AC 770 ms
86,144 KB
testcase_48 AC 759 ms
86,528 KB
testcase_49 AC 727 ms
86,724 KB
testcase_50 AC 763 ms
86,144 KB
testcase_51 AC 753 ms
86,272 KB
testcase_52 AC 758 ms
86,016 KB
testcase_53 AC 767 ms
86,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

n, d = map(int, input().split())
a = [(int(input()), i) for i in range(n)]
a.sort()
ans = [0] * n
for i in range(n):
    ans[a[i][1]] = bisect.bisect_left(a, (a[i][0] - d, 2000000000))

for i in range(n):
    print(ans[i])
0