結果
問題 | No.2803 Bocching Star |
ユーザー | sawfish |
提出日時 | 2024-08-11 14:28:52 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 35 |
ソースコード
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)))