結果

問題 No.2803 Bocching Star
ユーザー るこーそーるこーそー
提出日時 2024-09-25 13:30:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 756 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 130,428 KB
最終ジャッジ日時 2024-09-25 13:30:22
合計ジャッジ時間 16,854 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,284 KB
testcase_01 AC 37 ms
51,752 KB
testcase_02 AC 36 ms
53,032 KB
testcase_03 AC 104 ms
79,696 KB
testcase_04 AC 600 ms
104,556 KB
testcase_05 AC 316 ms
99,916 KB
testcase_06 AC 93 ms
78,240 KB
testcase_07 AC 221 ms
92,268 KB
testcase_08 AC 145 ms
85,008 KB
testcase_09 AC 651 ms
107,532 KB
testcase_10 AC 651 ms
129,552 KB
testcase_11 AC 639 ms
107,752 KB
testcase_12 AC 196 ms
90,164 KB
testcase_13 AC 509 ms
101,516 KB
testcase_14 AC 366 ms
99,764 KB
testcase_15 AC 599 ms
111,204 KB
testcase_16 AC 322 ms
99,988 KB
testcase_17 AC 128 ms
83,072 KB
testcase_18 AC 134 ms
81,364 KB
testcase_19 AC 539 ms
101,696 KB
testcase_20 AC 315 ms
99,820 KB
testcase_21 AC 253 ms
97,732 KB
testcase_22 AC 248 ms
94,840 KB
testcase_23 AC 680 ms
130,316 KB
testcase_24 AC 725 ms
130,428 KB
testcase_25 AC 704 ms
130,064 KB
testcase_26 AC 748 ms
130,068 KB
testcase_27 AC 740 ms
130,048 KB
testcase_28 AC 727 ms
129,932 KB
testcase_29 AC 717 ms
129,820 KB
testcase_30 AC 701 ms
130,068 KB
testcase_31 AC 687 ms
129,940 KB
testcase_32 AC 756 ms
130,192 KB
testcase_33 AC 53 ms
65,392 KB
testcase_34 AC 54 ms
65,880 KB
testcase_35 AC 53 ms
64,916 KB
testcase_36 AC 53 ms
65,048 KB
testcase_37 AC 52 ms
65,192 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):
    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