結果

問題 No.1110 好きな歌
ユーザー 👑 rin204rin204
提出日時 2020-08-13 07:39:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,667 ms / 5,000 ms
コード長 333 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 53,584 KB
最終ジャッジ日時 2024-10-09 18:59:05
合計ジャッジ時間 58,817 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 34 ms
10,624 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 33 ms
10,624 KB
testcase_17 AC 34 ms
10,752 KB
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 35 ms
10,880 KB
testcase_20 AC 34 ms
10,752 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 34 ms
10,752 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 1,517 ms
35,268 KB
testcase_25 AC 1,821 ms
40,340 KB
testcase_26 AC 908 ms
26,660 KB
testcase_27 AC 1,796 ms
40,172 KB
testcase_28 AC 944 ms
27,076 KB
testcase_29 AC 2,079 ms
46,144 KB
testcase_30 AC 961 ms
26,300 KB
testcase_31 AC 580 ms
20,808 KB
testcase_32 AC 2,385 ms
49,316 KB
testcase_33 AC 1,155 ms
28,340 KB
testcase_34 AC 1,568 ms
36,180 KB
testcase_35 AC 2,409 ms
49,048 KB
testcase_36 AC 243 ms
14,720 KB
testcase_37 AC 654 ms
22,524 KB
testcase_38 AC 2,001 ms
45,736 KB
testcase_39 AC 1,531 ms
37,016 KB
testcase_40 AC 1,900 ms
40,620 KB
testcase_41 AC 144 ms
12,928 KB
testcase_42 AC 2,187 ms
45,708 KB
testcase_43 AC 2,054 ms
45,156 KB
testcase_44 AC 2,626 ms
48,916 KB
testcase_45 AC 2,524 ms
50,964 KB
testcase_46 AC 2,476 ms
51,280 KB
testcase_47 AC 2,613 ms
52,884 KB
testcase_48 AC 2,558 ms
50,704 KB
testcase_49 AC 2,456 ms
48,088 KB
testcase_50 AC 2,579 ms
51,404 KB
testcase_51 AC 2,498 ms
49,552 KB
testcase_52 AC 2,568 ms
51,536 KB
testcase_53 AC 2,667 ms
53,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())
alst = [[int(input()), i] for i in range(n)]
alst.sort()
ans = [0 for _ in range(n)]

for a, i in alst:
    l = 0
    r = n
    while r != l:
        pos = (r + l) // 2
        if a - d >= alst[pos][0]:
            l = pos + 1
        else:
            r = pos
    ans[i] = l

print(*ans, sep = "\n")
0