結果

問題 No.2803 Bocching Star
ユーザー hiro1729hiro1729
提出日時 2024-07-12 21:03:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 655 ms / 2,000 ms
コード長 871 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 119,252 KB
最終ジャッジ日時 2024-07-12 21:04:05
合計ジャッジ時間 15,710 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,376 KB
testcase_01 AC 44 ms
53,504 KB
testcase_02 AC 41 ms
53,376 KB
testcase_03 AC 119 ms
78,720 KB
testcase_04 AC 518 ms
103,592 KB
testcase_05 AC 306 ms
98,816 KB
testcase_06 AC 99 ms
77,312 KB
testcase_07 AC 217 ms
88,448 KB
testcase_08 AC 152 ms
83,456 KB
testcase_09 AC 619 ms
117,012 KB
testcase_10 AC 580 ms
118,156 KB
testcase_11 AC 588 ms
113,620 KB
testcase_12 AC 240 ms
87,060 KB
testcase_13 AC 493 ms
100,864 KB
testcase_14 AC 346 ms
97,152 KB
testcase_15 AC 554 ms
113,316 KB
testcase_16 AC 305 ms
98,176 KB
testcase_17 AC 141 ms
81,280 KB
testcase_18 AC 126 ms
80,000 KB
testcase_19 AC 503 ms
100,872 KB
testcase_20 AC 300 ms
97,652 KB
testcase_21 AC 250 ms
92,928 KB
testcase_22 AC 248 ms
90,880 KB
testcase_23 AC 592 ms
118,124 KB
testcase_24 AC 655 ms
119,252 KB
testcase_25 AC 621 ms
118,168 KB
testcase_26 AC 652 ms
118,296 KB
testcase_27 AC 642 ms
117,768 KB
testcase_28 AC 650 ms
117,772 KB
testcase_29 AC 649 ms
117,776 KB
testcase_30 AC 653 ms
117,776 KB
testcase_31 AC 594 ms
117,784 KB
testcase_32 AC 641 ms
118,804 KB
testcase_33 AC 61 ms
68,480 KB
testcase_34 AC 64 ms
68,736 KB
testcase_35 AC 61 ms
67,712 KB
testcase_36 AC 60 ms
67,968 KB
testcase_37 AC 64 ms
68,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import defaultdict as dd
S = input
R = range
P = print
def I(): return int(S())
def M(): return map(int, S().split())
def L(): return list(M())
def O(): return list(map(int, open(0).read().split()))
def yn(b): print("Yes" if b else "No")
biga = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
smaa = "abcdefghijklmnopqrstuvwxyz"
def acc(a):
	b = [0]
	for i in a:
		b.append(b[-1] + i)
	return b

n, s = M()
p = L()
if n == 1:
	P(1)
	P(1)
	exit()
ans = []
a = sorted((p[i], i) for i in R(n))
for i in R(n):
	if i == 0 and abs(a[i + 1][0] - a[i][0]) > s:
		ans.append(a[i][1])
	if i == n - 1 and abs(a[i - 1][0] - a[i][0]) > s:
		ans.append(a[i][1])
	if 0 < i < n - 1:
		if abs(a[i - 1][0] - a[i][0]) > s and abs(a[i + 1][0] - a[i][0]) > s:
			ans.append(a[i][1])
ans.sort()
P(len(ans))
P(*[i + 1 for i in ans])
0