結果

問題 No.1110 好きな歌
ユーザー flippergoflippergo
提出日時 2020-12-24 15:24:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 380 ms / 5,000 ms
コード長 420 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 95,888 KB
最終ジャッジ日時 2024-09-21 16:56:17
合計ジャッジ時間 14,000 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,584 KB
testcase_01 AC 35 ms
53,224 KB
testcase_02 AC 33 ms
52,232 KB
testcase_03 AC 33 ms
52,912 KB
testcase_04 AC 33 ms
53,448 KB
testcase_05 AC 33 ms
52,664 KB
testcase_06 AC 33 ms
52,424 KB
testcase_07 AC 32 ms
52,476 KB
testcase_08 AC 34 ms
52,520 KB
testcase_09 AC 35 ms
53,264 KB
testcase_10 AC 34 ms
52,604 KB
testcase_11 AC 35 ms
52,352 KB
testcase_12 AC 35 ms
54,140 KB
testcase_13 AC 35 ms
52,804 KB
testcase_14 AC 43 ms
60,460 KB
testcase_15 AC 38 ms
53,988 KB
testcase_16 AC 42 ms
60,520 KB
testcase_17 AC 48 ms
63,612 KB
testcase_18 AC 35 ms
52,612 KB
testcase_19 AC 52 ms
64,676 KB
testcase_20 AC 48 ms
62,100 KB
testcase_21 AC 40 ms
54,804 KB
testcase_22 AC 45 ms
61,812 KB
testcase_23 AC 37 ms
54,248 KB
testcase_24 AC 226 ms
83,588 KB
testcase_25 AC 285 ms
89,272 KB
testcase_26 AC 176 ms
81,872 KB
testcase_27 AC 301 ms
90,656 KB
testcase_28 AC 183 ms
81,632 KB
testcase_29 AC 305 ms
87,164 KB
testcase_30 AC 183 ms
81,620 KB
testcase_31 AC 139 ms
79,300 KB
testcase_32 AC 369 ms
92,336 KB
testcase_33 AC 222 ms
87,340 KB
testcase_34 AC 257 ms
84,468 KB
testcase_35 AC 368 ms
89,344 KB
testcase_36 AC 99 ms
76,940 KB
testcase_37 AC 157 ms
82,364 KB
testcase_38 AC 312 ms
87,012 KB
testcase_39 AC 248 ms
84,372 KB
testcase_40 AC 299 ms
86,548 KB
testcase_41 AC 91 ms
77,184 KB
testcase_42 AC 378 ms
95,888 KB
testcase_43 AC 309 ms
86,428 KB
testcase_44 AC 363 ms
89,224 KB
testcase_45 AC 354 ms
88,808 KB
testcase_46 AC 352 ms
89,648 KB
testcase_47 AC 351 ms
88,876 KB
testcase_48 AC 357 ms
89,248 KB
testcase_49 AC 360 ms
89,536 KB
testcase_50 AC 362 ms
89,276 KB
testcase_51 AC 380 ms
88,720 KB
testcase_52 AC 373 ms
89,468 KB
testcase_53 AC 372 ms
89,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D = map(int,input().split())
A = [int(input()) for _ in range(N)]
A = [(A[i],i) for i in range(N)]
A = sorted(A,key=lambda x:x[0],reverse=True)
B = [0 for _ in range(N)]
i = 0
j = i+1
while i<N:
    a = A[i][0]
    flag = 0
    while j<N:
        b = A[j][0]
        if a-b>=D:
            flag = 1
            break
        j += 1
    if flag==1:
        B[A[i][1]] = N-j
    i += 1
for i in range(N):
    print(B[i])
0