結果

問題 No.1110 好きな歌
ユーザー trineutrontrineutron
提出日時 2019-10-25 17:10:44
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,617 ms / 5,000 ms
コード長 247 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 43,696 KB
最終ジャッジ日時 2024-09-13 10:29:06
合計ジャッジ時間 37,122 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,816 KB
testcase_01 AC 11 ms
6,944 KB
testcase_02 AC 11 ms
6,940 KB
testcase_03 AC 11 ms
6,940 KB
testcase_04 AC 11 ms
6,940 KB
testcase_05 AC 11 ms
6,940 KB
testcase_06 AC 11 ms
6,940 KB
testcase_07 AC 11 ms
6,944 KB
testcase_08 AC 11 ms
6,940 KB
testcase_09 AC 12 ms
6,944 KB
testcase_10 AC 11 ms
6,940 KB
testcase_11 AC 11 ms
6,944 KB
testcase_12 AC 11 ms
6,944 KB
testcase_13 AC 11 ms
6,944 KB
testcase_14 AC 14 ms
6,944 KB
testcase_15 AC 13 ms
6,944 KB
testcase_16 AC 14 ms
6,940 KB
testcase_17 AC 16 ms
6,940 KB
testcase_18 AC 11 ms
6,940 KB
testcase_19 AC 16 ms
6,944 KB
testcase_20 AC 15 ms
6,940 KB
testcase_21 AC 13 ms
6,944 KB
testcase_22 AC 16 ms
6,944 KB
testcase_23 AC 13 ms
6,944 KB
testcase_24 AC 900 ms
28,056 KB
testcase_25 AC 1,106 ms
32,756 KB
testcase_26 AC 552 ms
20,204 KB
testcase_27 AC 1,112 ms
32,476 KB
testcase_28 AC 621 ms
21,424 KB
testcase_29 AC 1,310 ms
37,084 KB
testcase_30 AC 605 ms
21,076 KB
testcase_31 AC 365 ms
15,360 KB
testcase_32 AC 1,461 ms
40,224 KB
testcase_33 AC 704 ms
23,068 KB
testcase_34 AC 975 ms
29,524 KB
testcase_35 AC 1,510 ms
41,728 KB
testcase_36 AC 152 ms
10,112 KB
testcase_37 AC 389 ms
16,652 KB
testcase_38 AC 1,251 ms
36,740 KB
testcase_39 AC 938 ms
29,020 KB
testcase_40 AC 1,172 ms
34,296 KB
testcase_41 AC 90 ms
8,448 KB
testcase_42 AC 1,399 ms
38,572 KB
testcase_43 AC 1,333 ms
36,636 KB
testcase_44 AC 1,578 ms
42,292 KB
testcase_45 AC 1,617 ms
43,056 KB
testcase_46 AC 1,596 ms
42,800 KB
testcase_47 AC 1,612 ms
43,696 KB
testcase_48 AC 1,602 ms
43,056 KB
testcase_49 AC 1,501 ms
41,520 KB
testcase_50 AC 1,567 ms
43,056 KB
testcase_51 AC 1,541 ms
42,672 KB
testcase_52 AC 1,563 ms
42,932 KB
testcase_53 AC 1,613 ms
43,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, raw_input().split())
a = sorted([(input(), i) for i in range(n)])
ans = [0] * n
index = 0

for i in range(n):
    while (a[i][0] - a[index][0] >= d): index = index + 1
    ans[a[i][1]] = index

for i in range(n):
    print(ans[i])
0