結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 36 ms
10,752 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 31 ms
10,624 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 32 ms
10,752 KB
testcase_16 AC 32 ms
10,624 KB
testcase_17 AC 33 ms
10,752 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 33 ms
10,624 KB
testcase_20 AC 33 ms
10,752 KB
testcase_21 AC 32 ms
10,624 KB
testcase_22 AC 31 ms
10,624 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 439 ms
19,796 KB
testcase_25 AC 532 ms
21,632 KB
testcase_26 AC 286 ms
17,220 KB
testcase_27 AC 521 ms
21,656 KB
testcase_28 AC 312 ms
16,624 KB
testcase_29 AC 628 ms
24,792 KB
testcase_30 AC 295 ms
15,976 KB
testcase_31 AC 195 ms
14,432 KB
testcase_32 AC 695 ms
25,544 KB
testcase_33 AC 329 ms
16,344 KB
testcase_34 AC 458 ms
19,592 KB
testcase_35 AC 681 ms
23,108 KB
testcase_36 AC 97 ms
12,092 KB
testcase_37 AC 217 ms
15,408 KB
testcase_38 AC 623 ms
24,732 KB
testcase_39 AC 462 ms
21,212 KB
testcase_40 AC 529 ms
20,036 KB
testcase_41 AC 68 ms
11,648 KB
testcase_42 AC 641 ms
22,368 KB
testcase_43 AC 616 ms
24,080 KB
testcase_44 AC 725 ms
24,088 KB
testcase_45 AC 759 ms
26,136 KB
testcase_46 AC 751 ms
25,556 KB
testcase_47 AC 782 ms
27,928 KB
testcase_48 AC 741 ms
25,876 KB
testcase_49 AC 662 ms
22,232 KB
testcase_50 AC 781 ms
25,684 KB
testcase_51 AC 726 ms
24,472 KB
testcase_52 AC 749 ms
25,940 KB
testcase_53 AC 776 ms
27,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
def solve():
    N, D = map(int, input().split())
    A = [int(input()) for _ in range(N)]
    B = sorted(A)
    ans = [0]*N
    for i in range(N):
        ans[i] = bisect_right(B,A[i]-D)
    return ans
print(*solve(),sep='\n')
0