結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 WA -
testcase_03 RE -
testcase_04 WA -
testcase_05 RE -
testcase_06 WA -
testcase_07 RE -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 RE -
testcase_12 RE -
testcase_13 WA -
testcase_14 WA -
testcase_15 RE -
testcase_16 RE -
testcase_17 WA -
testcase_18 WA -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 WA -
testcase_23 WA -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 WA -
testcase_29 WA -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
権限があれば一括ダウンロードができます

ソースコード

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.extend((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(i)

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