結果

問題 No.2803 Bocching Star
ユーザー detteiuudetteiuu
提出日時 2024-07-12 21:05:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 381 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 129,332 KB
最終ジャッジ日時 2024-07-12 21:05:50
合計ジャッジ時間 9,236 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,868 KB
testcase_01 AC 32 ms
52,580 KB
testcase_02 AC 37 ms
52,584 KB
testcase_03 AC 82 ms
79,756 KB
testcase_04 AC 281 ms
106,160 KB
testcase_05 AC 164 ms
97,364 KB
testcase_06 AC 61 ms
72,384 KB
testcase_07 AC 123 ms
88,064 KB
testcase_08 AC 84 ms
79,184 KB
testcase_09 AC 271 ms
108,608 KB
testcase_10 AC 343 ms
108,768 KB
testcase_11 AC 295 ms
106,156 KB
testcase_12 AC 120 ms
88,488 KB
testcase_13 AC 237 ms
104,180 KB
testcase_14 AC 211 ms
98,612 KB
testcase_15 AC 293 ms
106,152 KB
testcase_16 AC 173 ms
93,480 KB
testcase_17 AC 84 ms
80,592 KB
testcase_18 AC 70 ms
73,680 KB
testcase_19 AC 240 ms
103,836 KB
testcase_20 AC 177 ms
97,812 KB
testcase_21 AC 134 ms
89,872 KB
testcase_22 AC 135 ms
88,764 KB
testcase_23 AC 318 ms
112,188 KB
testcase_24 AC 381 ms
129,332 KB
testcase_25 AC 347 ms
124,372 KB
testcase_26 AC 345 ms
125,396 KB
testcase_27 AC 338 ms
115,696 KB
testcase_28 AC 335 ms
120,128 KB
testcase_29 AC 311 ms
113,732 KB
testcase_30 AC 377 ms
126,428 KB
testcase_31 AC 337 ms
111,428 KB
testcase_32 AC 355 ms
129,200 KB
testcase_33 AC 48 ms
66,180 KB
testcase_34 AC 48 ms
65,256 KB
testcase_35 AC 48 ms
64,676 KB
testcase_36 AC 49 ms
64,760 KB
testcase_37 AC 49 ms
65,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, S = map(int, input().split())
P = list(map(int, input().split()))
P = [(i, P[i]) for i in range(N)]
P.sort(key=lambda x:x[1])

if N == 1:
    print(1)
    exit(print(1))

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

print(len(ans))
print(*sorted(ans))
0