結果

問題 No.2803 Bocching Star
ユーザー sawfishsawfish
提出日時 2024-08-11 14:28:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 517 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,616 KB
最終ジャッジ日時 2024-08-11 14:29:05
合計ジャッジ時間 11,844 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 66 ms
15,608 KB
testcase_04 AC 389 ms
44,864 KB
testcase_05 AC 166 ms
29,952 KB
testcase_06 AC 53 ms
14,080 KB
testcase_07 AC 145 ms
23,332 KB
testcase_08 AC 83 ms
18,220 KB
testcase_09 AC 397 ms
49,752 KB
testcase_10 AC 391 ms
50,524 KB
testcase_11 AC 424 ms
47,776 KB
testcase_12 AC 127 ms
21,804 KB
testcase_13 AC 333 ms
43,512 KB
testcase_14 AC 203 ms
32,944 KB
testcase_15 AC 433 ms
46,216 KB
testcase_16 AC 206 ms
29,768 KB
testcase_17 AC 78 ms
17,744 KB
testcase_18 AC 71 ms
16,160 KB
testcase_19 AC 303 ms
43,512 KB
testcase_20 AC 186 ms
30,160 KB
testcase_21 AC 143 ms
26,088 KB
testcase_22 AC 149 ms
25,388 KB
testcase_23 AC 458 ms
51,488 KB
testcase_24 AC 494 ms
51,488 KB
testcase_25 AC 478 ms
51,608 KB
testcase_26 AC 474 ms
51,488 KB
testcase_27 AC 419 ms
51,484 KB
testcase_28 AC 500 ms
51,488 KB
testcase_29 AC 403 ms
51,484 KB
testcase_30 AC 493 ms
51,616 KB
testcase_31 AC 430 ms
51,484 KB
testcase_32 AC 517 ms
51,484 KB
testcase_33 AC 30 ms
11,136 KB
testcase_34 AC 30 ms
11,136 KB
testcase_35 AC 29 ms
11,008 KB
testcase_36 AC 29 ms
11,008 KB
testcase_37 AC 29 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, S = map(int, input().split())

P = [(i + 1, int(v)) for i, v in enumerate(input().split())]

P.sort(key=lambda x: x[1])
P.insert(0, (0, -S-1))
P.append((N + 1, P[-1][1] + S + 1))

ans = []
for i in range(1, N + 1):
    if P[i][1] - P[i - 1][1] > S and P[i + 1][1] - P[i][1] > S:
        ans.append(P[i][0])

ans.sort()
print(len(ans))
print(' '.join(map(str, ans)))
0