結果

問題 No.1110 好きな歌
ユーザー trineutrontrineutron
提出日時 2019-10-25 17:11:22
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 2,282 ms / 5,000 ms
コード長 247 bytes
コンパイル時間 2,222 ms
コンパイル使用メモリ 76,440 KB
実行使用メモリ 150,060 KB
最終ジャッジ日時 2024-09-13 11:05:56
合計ジャッジ時間 55,027 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
75,552 KB
testcase_01 AC 72 ms
75,892 KB
testcase_02 AC 72 ms
75,560 KB
testcase_03 AC 74 ms
75,424 KB
testcase_04 AC 73 ms
75,424 KB
testcase_05 AC 74 ms
75,708 KB
testcase_06 AC 73 ms
75,160 KB
testcase_07 AC 71 ms
75,400 KB
testcase_08 AC 73 ms
75,668 KB
testcase_09 AC 72 ms
75,804 KB
testcase_10 AC 73 ms
75,176 KB
testcase_11 AC 73 ms
75,800 KB
testcase_12 AC 73 ms
75,556 KB
testcase_13 AC 74 ms
75,532 KB
testcase_14 AC 86 ms
77,192 KB
testcase_15 AC 82 ms
77,348 KB
testcase_16 AC 82 ms
77,488 KB
testcase_17 AC 89 ms
77,448 KB
testcase_18 AC 73 ms
75,412 KB
testcase_19 AC 90 ms
77,508 KB
testcase_20 AC 87 ms
77,460 KB
testcase_21 AC 82 ms
77,180 KB
testcase_22 AC 87 ms
76,964 KB
testcase_23 AC 78 ms
76,332 KB
testcase_24 AC 1,362 ms
120,496 KB
testcase_25 AC 1,642 ms
129,780 KB
testcase_26 AC 864 ms
104,404 KB
testcase_27 AC 1,593 ms
128,484 KB
testcase_28 AC 955 ms
107,668 KB
testcase_29 AC 1,823 ms
136,084 KB
testcase_30 AC 961 ms
107,292 KB
testcase_31 AC 633 ms
96,148 KB
testcase_32 AC 2,052 ms
143,532 KB
testcase_33 AC 1,094 ms
112,244 KB
testcase_34 AC 1,457 ms
123,892 KB
testcase_35 AC 2,246 ms
149,416 KB
testcase_36 AC 321 ms
86,744 KB
testcase_37 AC 670 ms
97,864 KB
testcase_38 AC 1,836 ms
135,804 KB
testcase_39 AC 1,383 ms
121,796 KB
testcase_40 AC 1,775 ms
134,120 KB
testcase_41 AC 224 ms
82,528 KB
testcase_42 AC 2,008 ms
141,840 KB
testcase_43 AC 1,829 ms
135,804 KB
testcase_44 AC 2,264 ms
149,160 KB
testcase_45 AC 2,282 ms
149,544 KB
testcase_46 AC 2,257 ms
149,412 KB
testcase_47 AC 2,247 ms
149,544 KB
testcase_48 AC 2,232 ms
149,164 KB
testcase_49 AC 2,200 ms
150,060 KB
testcase_50 AC 2,215 ms
149,292 KB
testcase_51 AC 2,255 ms
149,416 KB
testcase_52 AC 2,257 ms
149,024 KB
testcase_53 AC 2,260 ms
149,036 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