結果

問題 No.1110 好きな歌
ユーザー realDivineJKrealDivineJK
提出日時 2020-07-10 21:53:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,549 ms / 5,000 ms
コード長 526 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,616 KB
最終ジャッジ日時 2024-10-11 09:00:06
合計ジャッジ時間 43,309 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 32 ms
10,624 KB
testcase_16 AC 33 ms
10,624 KB
testcase_17 AC 34 ms
10,752 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 34 ms
10,880 KB
testcase_20 AC 34 ms
10,624 KB
testcase_21 AC 32 ms
10,496 KB
testcase_22 AC 34 ms
10,752 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 1,101 ms
20,320 KB
testcase_25 AC 1,335 ms
22,436 KB
testcase_26 AC 854 ms
16,768 KB
testcase_27 AC 1,378 ms
22,532 KB
testcase_28 AC 664 ms
17,652 KB
testcase_29 AC 1,982 ms
24,204 KB
testcase_30 AC 450 ms
17,528 KB
testcase_31 AC 410 ms
14,976 KB
testcase_32 AC 2,083 ms
25,672 KB
testcase_33 AC 424 ms
18,652 KB
testcase_34 AC 937 ms
21,444 KB
testcase_35 AC 1,092 ms
27,456 KB
testcase_36 AC 126 ms
12,544 KB
testcase_37 AC 595 ms
15,360 KB
testcase_38 AC 2,007 ms
24,336 KB
testcase_39 AC 1,356 ms
20,828 KB
testcase_40 AC 765 ms
23,736 KB
testcase_41 AC 132 ms
11,520 KB
testcase_42 AC 1,193 ms
25,396 KB
testcase_43 AC 1,856 ms
24,344 KB
testcase_44 AC 1,376 ms
27,168 KB
testcase_45 AC 1,995 ms
27,296 KB
testcase_46 AC 1,713 ms
27,616 KB
testcase_47 AC 2,549 ms
27,164 KB
testcase_48 AC 1,892 ms
27,296 KB
testcase_49 AC 779 ms
27,548 KB
testcase_50 AC 1,871 ms
27,100 KB
testcase_51 AC 1,526 ms
27,364 KB
testcase_52 AC 1,988 ms
27,168 KB
testcase_53 AC 2,513 ms
27,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int, input().split())
A = [int(input()) for _ in range(N)]
B = [A[i] + D for i in range(N)]
B.sort()
cnt = 1
tmp = N
while tmp:
    cnt += 1
    tmp >>= 1
for i in range(N):
    if A[i] < B[0]:
        print(0)
    elif A[i] >= B[-1]:
        print(N)
    else:
        l, r = 0, N
        d = (l + r) // 2
        for j in range(cnt+1):
            if A[i] >= B[d]:
                l = d
                d = (l + r) // 2
            else:
                r = d
                d = (l + r) // 2
        print(d + 1)
0