結果

問題 No.1110 好きな歌
ユーザー lloyzlloyz
提出日時 2022-02-19 00:27:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 458 ms / 5,000 ms
コード長 329 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 95,180 KB
最終ジャッジ日時 2024-06-29 10:05:11
合計ジャッジ時間 15,930 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 39 ms
51,584 KB
testcase_05 AC 40 ms
51,812 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 40 ms
51,712 KB
testcase_10 AC 39 ms
52,144 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 39 ms
52,064 KB
testcase_13 AC 38 ms
51,584 KB
testcase_14 AC 50 ms
59,776 KB
testcase_15 AC 44 ms
53,504 KB
testcase_16 AC 49 ms
59,648 KB
testcase_17 AC 55 ms
61,568 KB
testcase_18 AC 41 ms
52,352 KB
testcase_19 AC 58 ms
64,256 KB
testcase_20 AC 55 ms
62,080 KB
testcase_21 AC 46 ms
53,760 KB
testcase_22 AC 52 ms
61,056 KB
testcase_23 AC 44 ms
52,992 KB
testcase_24 AC 284 ms
84,096 KB
testcase_25 AC 329 ms
85,516 KB
testcase_26 AC 206 ms
81,800 KB
testcase_27 AC 353 ms
88,620 KB
testcase_28 AC 223 ms
82,168 KB
testcase_29 AC 366 ms
86,936 KB
testcase_30 AC 218 ms
81,932 KB
testcase_31 AC 161 ms
80,640 KB
testcase_32 AC 435 ms
91,136 KB
testcase_33 AC 254 ms
85,852 KB
testcase_34 AC 304 ms
84,652 KB
testcase_35 AC 451 ms
89,340 KB
testcase_36 AC 110 ms
77,420 KB
testcase_37 AC 180 ms
82,204 KB
testcase_38 AC 368 ms
87,068 KB
testcase_39 AC 290 ms
84,392 KB
testcase_40 AC 360 ms
86,560 KB
testcase_41 AC 103 ms
76,868 KB
testcase_42 AC 452 ms
95,180 KB
testcase_43 AC 370 ms
86,776 KB
testcase_44 AC 453 ms
88,444 KB
testcase_45 AC 457 ms
88,440 KB
testcase_46 AC 450 ms
88,948 KB
testcase_47 AC 455 ms
88,436 KB
testcase_48 AC 458 ms
88,868 KB
testcase_49 AC 441 ms
89,076 KB
testcase_50 AC 448 ms
88,692 KB
testcase_51 AC 440 ms
88,568 KB
testcase_52 AC 451 ms
88,956 KB
testcase_53 AC 438 ms
88,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())
A = []
for i in range(n):
    A.append((int(input()), i))

A.sort(key=lambda x: x[0], reverse=True)
ANS = [0 for _ in range(n)]
right = 0
for left in range(n):
    while right < n and A[left][0] - A[right][0] < d:
        right += 1
    ANS[A[left][1]] = n - right
for ans in ANS:
    print(ans)
0