結果

問題 No.2803 Bocching Star
ユーザー 👑 rin204rin204
提出日時 2024-07-12 21:01:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 149,816 KB
最終ジャッジ日時 2024-07-12 21:02:26
合計ジャッジ時間 6,995 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

n, s = map(int, input().split())
P = list(map(int, input().split()))
Q = sorted(P)
se = set()
for i in range(n):
    ok = True
    if i > 0 and Q[i] - Q[i - 1] <= s:
        ok = False
    if i < n - 1 and Q[i + 1] - Q[i] <= s:
        ok = False
    if ok:
        se.add(Q[i])

ans = [i for i, p in enumerate(P, 1) if p in se]
print(len(ans))
print(*ans)
0