結果

問題 No.2803 Bocching Star
ユーザー るこーそーるこーそー
提出日時 2024-09-25 13:27:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 743 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 130,820 KB
最終ジャッジ日時 2024-09-25 13:27:47
合計ジャッジ時間 18,277 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,764 KB
testcase_01 AC 36 ms
52,420 KB
testcase_02 AC 40 ms
52,892 KB
testcase_03 AC 112 ms
79,556 KB
testcase_04 AC 582 ms
104,360 KB
testcase_05 AC 294 ms
99,492 KB
testcase_06 AC 90 ms
78,152 KB
testcase_07 AC 213 ms
92,232 KB
testcase_08 AC 139 ms
85,516 KB
testcase_09 AC 626 ms
108,128 KB
testcase_10 AC 655 ms
129,904 KB
testcase_11 AC 654 ms
107,716 KB
testcase_12 AC 196 ms
89,852 KB
testcase_13 AC 542 ms
101,844 KB
testcase_14 AC 348 ms
99,824 KB
testcase_15 AC 600 ms
111,320 KB
testcase_16 AC 344 ms
99,956 KB
testcase_17 AC 129 ms
82,804 KB
testcase_18 AC 109 ms
81,704 KB
testcase_19 AC 523 ms
101,580 KB
testcase_20 AC 334 ms
99,592 KB
testcase_21 AC 256 ms
97,628 KB
testcase_22 AC 248 ms
95,272 KB
testcase_23 AC 682 ms
130,160 KB
testcase_24 AC 709 ms
130,820 KB
testcase_25 AC 714 ms
130,056 KB
testcase_26 AC 713 ms
129,932 KB
testcase_27 AC 728 ms
130,532 KB
testcase_28 AC 693 ms
129,800 KB
testcase_29 AC 708 ms
130,424 KB
testcase_30 AC 697 ms
130,440 KB
testcase_31 AC 696 ms
129,908 KB
testcase_32 AC 743 ms
130,292 KB
testcase_33 AC 55 ms
65,508 KB
testcase_34 AC 55 ms
65,744 KB
testcase_35 AC 55 ms
64,984 KB
testcase_36 AC 55 ms
66,228 KB
testcase_37 AC 55 ms
66,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,s=map(int,input().split())
P=list(map(int,input().split()))
P=[[p,i] for i,p in enumerate(P)]
P.sort()

if len(P)==1:
    print(1)
    print(1)
    exit()

ans=[]
for i in range(n):
    if i!=0 and i!=n-1:
        pp,p,np=P[i-1][0],P[i][0],P[i+1][0]
        if s<abs(p-pp) and s<abs(np-p):
            ans.append(P[i][1]+1)
    
    if i==0:
        if s<abs(P[i][0]-P[i+1][0]):
            ans.append(P[i][1]+1)
    if i==n-1:
        if s<abs(P[i][0]-P[i-1][0]):
            ans.append(P[i][1]+1)

print(len(ans))       
print(*sorted(ans))
0