結果

問題 No.2803 Bocching Star
ユーザー Basin-BugBasin-Bug
提出日時 2024-07-12 21:50:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 656 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 116,588 KB
最終ジャッジ日時 2024-07-12 21:51:05
合計ジャッジ時間 15,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 106 ms
78,336 KB
testcase_04 AC 540 ms
106,272 KB
testcase_05 AC 275 ms
92,544 KB
testcase_06 AC 91 ms
77,008 KB
testcase_07 AC 213 ms
85,304 KB
testcase_08 AC 142 ms
82,040 KB
testcase_09 AC 567 ms
108,800 KB
testcase_10 AC 564 ms
105,296 KB
testcase_11 AC 580 ms
105,984 KB
testcase_12 AC 191 ms
83,840 KB
testcase_13 AC 467 ms
103,860 KB
testcase_14 AC 325 ms
95,580 KB
testcase_15 AC 573 ms
105,984 KB
testcase_16 AC 302 ms
92,928 KB
testcase_17 AC 133 ms
79,808 KB
testcase_18 AC 111 ms
78,932 KB
testcase_19 AC 482 ms
103,680 KB
testcase_20 AC 290 ms
92,800 KB
testcase_21 AC 239 ms
88,832 KB
testcase_22 AC 238 ms
86,912 KB
testcase_23 AC 607 ms
105,708 KB
testcase_24 AC 613 ms
116,588 KB
testcase_25 AC 656 ms
111,212 KB
testcase_26 AC 631 ms
113,000 KB
testcase_27 AC 608 ms
105,752 KB
testcase_28 AC 607 ms
108,000 KB
testcase_29 AC 612 ms
105,576 KB
testcase_30 AC 631 ms
113,832 KB
testcase_31 AC 609 ms
105,700 KB
testcase_32 AC 633 ms
116,384 KB
testcase_33 AC 55 ms
65,920 KB
testcase_34 AC 59 ms
66,176 KB
testcase_35 AC 55 ms
65,280 KB
testcase_36 AC 56 ms
65,920 KB
testcase_37 AC 56 ms
66,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, S = map(int,input().split())
P = list(map(int, input().split()))

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


sp = [(P[i], i) for i in range(N)]
sp.sort()

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

if sp[-1][0] - sp[-2][0] > S:
	ans.append(sp[-1][1] + 1)

print(len(ans))
ans.sort()
print(*ans)
0