結果

問題 No.2803 Bocching Star
ユーザー るこーそーるこーそー
提出日時 2024-09-25 13:30:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 804 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 130,512 KB
最終ジャッジ日時 2024-09-25 13:30:50
合計ジャッジ時間 18,717 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
52,352 KB
testcase_01 AC 40 ms
51,964 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 119 ms
79,680 KB
testcase_04 AC 605 ms
104,496 KB
testcase_05 AC 331 ms
99,712 KB
testcase_06 AC 93 ms
78,592 KB
testcase_07 AC 229 ms
92,128 KB
testcase_08 AC 157 ms
85,204 KB
testcase_09 AC 670 ms
107,772 KB
testcase_10 AC 715 ms
129,624 KB
testcase_11 AC 672 ms
108,088 KB
testcase_12 AC 212 ms
89,776 KB
testcase_13 AC 566 ms
101,504 KB
testcase_14 AC 387 ms
99,968 KB
testcase_15 AC 646 ms
110,920 KB
testcase_16 AC 360 ms
99,888 KB
testcase_17 AC 146 ms
82,872 KB
testcase_18 AC 126 ms
81,664 KB
testcase_19 AC 584 ms
101,800 KB
testcase_20 AC 343 ms
99,764 KB
testcase_21 AC 305 ms
97,536 KB
testcase_22 AC 277 ms
95,360 KB
testcase_23 AC 737 ms
130,260 KB
testcase_24 AC 794 ms
130,488 KB
testcase_25 AC 784 ms
130,308 KB
testcase_26 AC 782 ms
130,124 KB
testcase_27 AC 800 ms
130,512 KB
testcase_28 AC 788 ms
130,228 KB
testcase_29 AC 761 ms
130,492 KB
testcase_30 AC 804 ms
130,260 KB
testcase_31 AC 751 ms
129,984 KB
testcase_32 AC 780 ms
130,432 KB
testcase_33 AC 56 ms
65,152 KB
testcase_34 AC 55 ms
65,152 KB
testcase_35 AC 56 ms
65,024 KB
testcase_36 AC 56 ms
64,768 KB
testcase_37 AC 56 ms
65,024 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()

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

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