結果

問題 No.2803 Bocching Star
ユーザー ああいいああいい
提出日時 2024-07-13 19:50:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 696 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 116,436 KB
最終ジャッジ日時 2024-07-13 19:50:30
合計ジャッジ時間 16,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,308 KB
testcase_01 AC 38 ms
53,448 KB
testcase_02 AC 37 ms
52,936 KB
testcase_03 AC 110 ms
78,156 KB
testcase_04 AC 560 ms
106,412 KB
testcase_05 AC 294 ms
92,948 KB
testcase_06 AC 92 ms
77,160 KB
testcase_07 AC 217 ms
85,444 KB
testcase_08 AC 145 ms
81,588 KB
testcase_09 AC 622 ms
109,104 KB
testcase_10 AC 615 ms
105,116 KB
testcase_11 AC 612 ms
105,864 KB
testcase_12 AC 197 ms
84,196 KB
testcase_13 AC 492 ms
103,780 KB
testcase_14 AC 343 ms
95,408 KB
testcase_15 AC 607 ms
106,020 KB
testcase_16 AC 319 ms
92,636 KB
testcase_17 AC 135 ms
80,080 KB
testcase_18 AC 114 ms
79,640 KB
testcase_19 AC 529 ms
103,804 KB
testcase_20 AC 303 ms
92,860 KB
testcase_21 AC 246 ms
88,716 KB
testcase_22 AC 242 ms
87,192 KB
testcase_23 AC 632 ms
105,756 KB
testcase_24 AC 696 ms
116,436 KB
testcase_25 AC 653 ms
111,476 KB
testcase_26 AC 685 ms
112,840 KB
testcase_27 AC 643 ms
105,816 KB
testcase_28 AC 668 ms
108,124 KB
testcase_29 AC 667 ms
105,796 KB
testcase_30 AC 671 ms
113,628 KB
testcase_31 AC 656 ms
105,444 KB
testcase_32 AC 679 ms
116,040 KB
testcase_33 AC 55 ms
67,560 KB
testcase_34 AC 56 ms
66,820 KB
testcase_35 AC 55 ms
67,200 KB
testcase_36 AC 59 ms
67,512 KB
testcase_37 AC 55 ms
67,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S = map(int,input().split())
P = list(map(int,input().split()))
l = [(P[i],i + 1) for i in range(N)]
l.sort()
ans = []
for i in range(N):
	p,j = l[i]
	flag = True
	if i > 0:
		pp,jj = l[i-1]
		if p - pp <= S:
			flag = False
	if i < N - 1:
		pp,jj = l[i + 1]
		if pp - p <= S:
			flag =  False
	if flag:
		ans.append(j)
ans.sort()
print(len(ans))
print(*ans)
0