結果

問題 No.1110 好きな歌
ユーザー ああいいああいい
提出日時 2022-04-19 23:25:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 5,000 ms
コード長 356 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 81,440 KB
最終ジャッジ日時 2024-06-10 20:57:06
合計ジャッジ時間 10,718 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 37 ms
51,968 KB
testcase_09 AC 37 ms
51,584 KB
testcase_10 AC 35 ms
51,712 KB
testcase_11 AC 36 ms
51,968 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 35 ms
51,968 KB
testcase_14 AC 49 ms
60,800 KB
testcase_15 AC 44 ms
53,504 KB
testcase_16 AC 53 ms
61,184 KB
testcase_17 AC 59 ms
65,408 KB
testcase_18 AC 39 ms
52,096 KB
testcase_19 AC 56 ms
63,616 KB
testcase_20 AC 55 ms
63,232 KB
testcase_21 AC 49 ms
60,288 KB
testcase_22 AC 53 ms
62,848 KB
testcase_23 AC 39 ms
53,632 KB
testcase_24 AC 175 ms
78,720 KB
testcase_25 AC 175 ms
79,044 KB
testcase_26 AC 124 ms
77,920 KB
testcase_27 AC 186 ms
79,448 KB
testcase_28 AC 132 ms
78,436 KB
testcase_29 AC 204 ms
79,812 KB
testcase_30 AC 116 ms
78,200 KB
testcase_31 AC 106 ms
77,240 KB
testcase_32 AC 217 ms
80,472 KB
testcase_33 AC 122 ms
78,564 KB
testcase_34 AC 164 ms
79,700 KB
testcase_35 AC 184 ms
81,084 KB
testcase_36 AC 81 ms
76,756 KB
testcase_37 AC 116 ms
77,452 KB
testcase_38 AC 201 ms
80,172 KB
testcase_39 AC 171 ms
79,144 KB
testcase_40 AC 161 ms
80,284 KB
testcase_41 AC 83 ms
76,448 KB
testcase_42 AC 183 ms
80,496 KB
testcase_43 AC 210 ms
79,952 KB
testcase_44 AC 209 ms
80,796 KB
testcase_45 AC 226 ms
81,352 KB
testcase_46 AC 215 ms
81,260 KB
testcase_47 AC 237 ms
80,724 KB
testcase_48 AC 217 ms
80,836 KB
testcase_49 AC 178 ms
81,440 KB
testcase_50 AC 213 ms
80,920 KB
testcase_51 AC 208 ms
80,964 KB
testcase_52 AC 240 ms
80,872 KB
testcase_53 AC 243 ms
81,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D = map(int,input().split())
A = [int(input()) for _ in range(N)]
B = A.copy()
B.sort()
for a in A:
    x = a - D
    if B[0] > x:
        print(0)
        continue
    start = 0
    end = N
    while end - start > 1:
        mid = end + start >> 1
        if B[mid] <= x:
            start = mid
        else:
            end = mid
    print(start + 1)
0