結果

問題 No.1110 好きな歌
ユーザー kimiyukikimiyuki
提出日時 2020-07-10 21:45:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 831 ms / 5,000 ms
コード長 598 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,576 KB
最終ジャッジ日時 2024-10-11 08:41:45
合計ジャッジ時間 21,140 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
11,520 KB
testcase_01 AC 39 ms
11,648 KB
testcase_02 AC 42 ms
11,648 KB
testcase_03 AC 40 ms
11,520 KB
testcase_04 AC 37 ms
11,648 KB
testcase_05 AC 37 ms
11,520 KB
testcase_06 AC 39 ms
11,392 KB
testcase_07 AC 39 ms
11,520 KB
testcase_08 AC 38 ms
11,520 KB
testcase_09 AC 40 ms
11,392 KB
testcase_10 AC 37 ms
11,520 KB
testcase_11 AC 38 ms
11,520 KB
testcase_12 AC 39 ms
11,648 KB
testcase_13 AC 38 ms
11,520 KB
testcase_14 AC 39 ms
11,392 KB
testcase_15 AC 38 ms
11,520 KB
testcase_16 AC 40 ms
11,520 KB
testcase_17 AC 41 ms
11,392 KB
testcase_18 AC 38 ms
11,392 KB
testcase_19 AC 42 ms
11,520 KB
testcase_20 AC 41 ms
11,392 KB
testcase_21 AC 39 ms
11,648 KB
testcase_22 AC 40 ms
11,392 KB
testcase_23 AC 40 ms
11,648 KB
testcase_24 AC 471 ms
21,004 KB
testcase_25 AC 570 ms
23,348 KB
testcase_26 AC 309 ms
18,212 KB
testcase_27 AC 563 ms
22,480 KB
testcase_28 AC 331 ms
17,924 KB
testcase_29 AC 650 ms
26,376 KB
testcase_30 AC 311 ms
16,768 KB
testcase_31 AC 210 ms
14,976 KB
testcase_32 AC 757 ms
27,392 KB
testcase_33 AC 354 ms
17,492 KB
testcase_34 AC 497 ms
20,988 KB
testcase_35 AC 726 ms
24,640 KB
testcase_36 AC 110 ms
12,672 KB
testcase_37 AC 238 ms
16,104 KB
testcase_38 AC 681 ms
26,204 KB
testcase_39 AC 497 ms
22,472 KB
testcase_40 AC 588 ms
21,992 KB
testcase_41 AC 81 ms
12,672 KB
testcase_42 AC 661 ms
24,276 KB
testcase_43 AC 656 ms
25,928 KB
testcase_44 AC 769 ms
24,592 KB
testcase_45 AC 802 ms
27,908 KB
testcase_46 AC 784 ms
26,916 KB
testcase_47 AC 809 ms
29,576 KB
testcase_48 AC 793 ms
26,392 KB
testcase_49 AC 715 ms
23,512 KB
testcase_50 AC 776 ms
27,268 KB
testcase_51 AC 764 ms
25,228 KB
testcase_52 AC 791 ms
27,656 KB
testcase_53 AC 831 ms
29,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
from typing import *
import bisect

def solve(n: int, d: int, a: List[int]) -> List[str]:
    sorted_a = sorted(a)
    ans = []
    for a_i in a:
        ans.append(bisect.bisect_right(sorted_a, a_i - d))
    return ans

# generated by online-judge-template-generator v4.4.0 (https://github.com/kmyk/online-judge-template-generator)
def main():
    N, D = map(int, input().split())
    A = [None for _ in range(N)]
    for i in range(N):
        A[i] = int(input())
    ans = solve(N, D, A)
    for i in range(N):
        print(ans[i])

if __name__ == '__main__':
    main()
0