結果

問題 No.2803 Bocching Star
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-06-15 11:41:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 632 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 116,872 KB
最終ジャッジ日時 2024-07-05 10:29:26
合計ジャッジ時間 14,856 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 106 ms
78,044 KB
testcase_04 AC 502 ms
105,728 KB
testcase_05 AC 276 ms
94,080 KB
testcase_06 AC 88 ms
76,928 KB
testcase_07 AC 206 ms
86,272 KB
testcase_08 AC 138 ms
81,748 KB
testcase_09 AC 555 ms
108,724 KB
testcase_10 AC 572 ms
108,568 KB
testcase_11 AC 550 ms
105,856 KB
testcase_12 AC 189 ms
84,712 KB
testcase_13 AC 465 ms
103,680 KB
testcase_14 AC 319 ms
97,024 KB
testcase_15 AC 539 ms
105,600 KB
testcase_16 AC 303 ms
94,336 KB
testcase_17 AC 121 ms
80,256 KB
testcase_18 AC 109 ms
79,616 KB
testcase_19 AC 471 ms
103,296 KB
testcase_20 AC 293 ms
94,316 KB
testcase_21 AC 236 ms
89,784 KB
testcase_22 AC 240 ms
88,320 KB
testcase_23 AC 589 ms
108,768 KB
testcase_24 AC 632 ms
116,564 KB
testcase_25 AC 616 ms
111,708 KB
testcase_26 AC 617 ms
113,548 KB
testcase_27 AC 598 ms
109,124 KB
testcase_28 AC 595 ms
108,436 KB
testcase_29 AC 588 ms
108,420 KB
testcase_30 AC 625 ms
113,504 KB
testcase_31 AC 581 ms
108,428 KB
testcase_32 AC 625 ms
116,872 KB
testcase_33 AC 54 ms
66,176 KB
testcase_34 AC 53 ms
66,944 KB
testcase_35 AC 51 ms
65,792 KB
testcase_36 AC 54 ms
66,304 KB
testcase_37 AC 54 ms
66,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S=map(int,input().split())
P=list(map(int,input().split()))
p=[(P[i],i+1) for i in range(N)]+[(-(1<<60),-1),(1<<60,-1)]
p.sort()
ans=[]
for i in range(1,N+1):
	near=min(p[i][0]-p[i-1][0],p[i+1][0]-p[i][0])
	if near>S:
		ans.append(p[i][1])
ans.sort()
print(len(ans))
print(*ans)
0