結果

問題 No.2803 Bocching Star
ユーザー NPNP
提出日時 2024-07-12 21:24:45
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 717 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,520 KB
最終ジャッジ日時 2024-07-12 21:25:00
合計ジャッジ時間 15,176 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(N, S, P):
    A = sorted((P[i], i + 1) for i in range(N))
    I = [A[i][1] for i in range(N) if (i == 0 or A[i][0] - A[i-1][0] > S) and (i == N-1 or A[i+1][0] - A[i][0] > S)]
    print(len(I))
    print(*sorted(I))

f(*map(int, input().split()), list(map(int, input().split())))
0