結果

問題 No.2803 Bocching Star
ユーザー tkykwtnbtkykwtnb
提出日時 2024-07-12 22:11:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 689 ms / 2,000 ms
コード長 437 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 118,204 KB
最終ジャッジ日時 2024-07-12 22:11:16
合計ジャッジ時間 16,358 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,220 KB
testcase_01 AC 36 ms
52,660 KB
testcase_02 AC 36 ms
52,340 KB
testcase_03 AC 106 ms
78,208 KB
testcase_04 AC 543 ms
104,520 KB
testcase_05 AC 294 ms
98,564 KB
testcase_06 AC 89 ms
77,108 KB
testcase_07 AC 215 ms
89,064 KB
testcase_08 AC 141 ms
82,848 KB
testcase_09 AC 589 ms
107,148 KB
testcase_10 AC 619 ms
117,476 KB
testcase_11 AC 617 ms
104,212 KB
testcase_12 AC 198 ms
87,020 KB
testcase_13 AC 497 ms
102,592 KB
testcase_14 AC 343 ms
101,992 KB
testcase_15 AC 578 ms
104,328 KB
testcase_16 AC 315 ms
98,444 KB
testcase_17 AC 130 ms
80,744 KB
testcase_18 AC 113 ms
80,072 KB
testcase_19 AC 495 ms
101,940 KB
testcase_20 AC 313 ms
98,408 KB
testcase_21 AC 255 ms
93,124 KB
testcase_22 AC 246 ms
90,800 KB
testcase_23 AC 642 ms
117,684 KB
testcase_24 AC 670 ms
118,076 KB
testcase_25 AC 689 ms
118,204 KB
testcase_26 AC 667 ms
117,944 KB
testcase_27 AC 666 ms
117,556 KB
testcase_28 AC 656 ms
118,084 KB
testcase_29 AC 633 ms
117,572 KB
testcase_30 AC 666 ms
118,128 KB
testcase_31 AC 631 ms
117,824 KB
testcase_32 AC 677 ms
117,968 KB
testcase_33 AC 54 ms
68,104 KB
testcase_34 AC 54 ms
66,852 KB
testcase_35 AC 54 ms
67,168 KB
testcase_36 AC 53 ms
66,796 KB
testcase_37 AC 53 ms
68,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S=map(int,input().split())
P=list(map(int,input().split()))
if len(P)==1:
    print(1)
    print(1)
    exit()
Q=[]
for i,p in enumerate(P,1):
    Q.append((p,i))
Q.sort()
ans=[]
if abs(Q[0][0]-Q[1][0])>S:
    ans.append(Q[0][1])
for i in range(1,N-1):
    if abs(Q[i][0]-Q[i-1][0])>S and abs(Q[i][0]-Q[i+1][0])>S:
        ans.append(Q[i][1])
if abs(Q[-1][0]-Q[-2][0])>S:
    ans.append(Q[-1][1])
ans.sort()
print(len(ans))
print(*ans)
0