結果

問題 No.1110 好きな歌
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-04-06 20:40:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 5,000 ms
コード長 526 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 81,904 KB
最終ジャッジ日時 2024-10-01 04:03:34
合計ジャッジ時間 11,209 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
56,188 KB
testcase_01 AC 44 ms
55,992 KB
testcase_02 AC 44 ms
56,564 KB
testcase_03 AC 42 ms
55,972 KB
testcase_04 AC 45 ms
56,448 KB
testcase_05 AC 44 ms
55,368 KB
testcase_06 AC 44 ms
56,108 KB
testcase_07 AC 44 ms
56,076 KB
testcase_08 AC 42 ms
55,424 KB
testcase_09 AC 43 ms
56,040 KB
testcase_10 AC 44 ms
57,000 KB
testcase_11 AC 43 ms
56,628 KB
testcase_12 AC 47 ms
56,108 KB
testcase_13 AC 45 ms
55,636 KB
testcase_14 AC 53 ms
63,756 KB
testcase_15 AC 47 ms
57,600 KB
testcase_16 AC 52 ms
63,476 KB
testcase_17 AC 57 ms
65,756 KB
testcase_18 AC 47 ms
56,148 KB
testcase_19 AC 53 ms
64,496 KB
testcase_20 AC 57 ms
63,868 KB
testcase_21 AC 53 ms
64,128 KB
testcase_22 AC 53 ms
64,564 KB
testcase_23 AC 45 ms
57,560 KB
testcase_24 AC 169 ms
79,916 KB
testcase_25 AC 185 ms
80,052 KB
testcase_26 AC 137 ms
78,920 KB
testcase_27 AC 181 ms
80,328 KB
testcase_28 AC 129 ms
79,296 KB
testcase_29 AC 217 ms
80,764 KB
testcase_30 AC 121 ms
78,836 KB
testcase_31 AC 116 ms
77,656 KB
testcase_32 AC 223 ms
80,908 KB
testcase_33 AC 115 ms
78,552 KB
testcase_34 AC 157 ms
80,000 KB
testcase_35 AC 169 ms
81,828 KB
testcase_36 AC 80 ms
77,604 KB
testcase_37 AC 121 ms
78,160 KB
testcase_38 AC 215 ms
81,656 KB
testcase_39 AC 179 ms
79,764 KB
testcase_40 AC 145 ms
80,560 KB
testcase_41 AC 92 ms
77,600 KB
testcase_42 AC 169 ms
81,004 KB
testcase_43 AC 204 ms
80,620 KB
testcase_44 AC 192 ms
81,560 KB
testcase_45 AC 224 ms
81,640 KB
testcase_46 AC 208 ms
81,544 KB
testcase_47 AC 235 ms
81,332 KB
testcase_48 AC 219 ms
81,724 KB
testcase_49 AC 155 ms
81,888 KB
testcase_50 AC 224 ms
81,136 KB
testcase_51 AC 213 ms
81,480 KB
testcase_52 AC 242 ms
81,500 KB
testcase_53 AC 269 ms
81,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline




N,D = map(int,input().split())
A = [int(input()) for _ in range(N)]

def cle(a,D):
    
    y = len(D)-1
    x = 0
    if D[x]>a:
        return 0
        
    if D[y]<=a:
        return y+1
    
    while y-x>1:
        mid = (y+x)//2
        if D[mid]<=a:
            x = mid
        else:
            y = mid
    return y




B = A[:]
B.sort()
for a in A:
    print(cle(a-D,B))
    
0