結果

問題 No.1110 好きな歌
ユーザー trineutrontrineutron
提出日時 2019-10-23 09:59:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,307 ms / 5,000 ms
コード長 238 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,340 KB
最終ジャッジ日時 2024-09-13 10:08:04
合計ジャッジ時間 30,992 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 33 ms
10,624 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 AC 33 ms
10,880 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 34 ms
10,880 KB
testcase_20 AC 33 ms
10,880 KB
testcase_21 AC 32 ms
10,752 KB
testcase_22 AC 34 ms
10,752 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 720 ms
30,180 KB
testcase_25 AC 913 ms
34,000 KB
testcase_26 AC 454 ms
23,580 KB
testcase_27 AC 893 ms
34,112 KB
testcase_28 AC 506 ms
23,984 KB
testcase_29 AC 1,058 ms
39,092 KB
testcase_30 AC 481 ms
23,088 KB
testcase_31 AC 307 ms
18,816 KB
testcase_32 AC 1,151 ms
41,588 KB
testcase_33 AC 550 ms
24,676 KB
testcase_34 AC 765 ms
30,724 KB
testcase_35 AC 1,189 ms
40,552 KB
testcase_36 AC 139 ms
13,952 KB
testcase_37 AC 327 ms
20,096 KB
testcase_38 AC 1,022 ms
38,816 KB
testcase_39 AC 752 ms
31,536 KB
testcase_40 AC 948 ms
33,800 KB
testcase_41 AC 88 ms
12,672 KB
testcase_42 AC 1,096 ms
38,164 KB
testcase_43 AC 1,057 ms
38,128 KB
testcase_44 AC 1,240 ms
41,308 KB
testcase_45 AC 1,292 ms
43,352 KB
testcase_46 AC 1,271 ms
42,780 KB
testcase_47 AC 1,283 ms
45,144 KB
testcase_48 AC 1,263 ms
43,100 KB
testcase_49 AC 1,198 ms
39,576 KB
testcase_50 AC 1,266 ms
42,904 KB
testcase_51 AC 1,250 ms
41,824 KB
testcase_52 AC 1,288 ms
43,292 KB
testcase_53 AC 1,307 ms
45,340 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