結果

問題 No.2803 Bocching Star
ユーザー セックセック
提出日時 2024-07-22 20:41:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 139,944 KB
最終ジャッジ日時 2024-07-22 20:41:33
合計ジャッジ時間 11,658 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 34 ms
51,712 KB
testcase_03 AC 83 ms
80,136 KB
testcase_04 AC 269 ms
104,448 KB
testcase_05 AC 181 ms
102,036 KB
testcase_06 AC 69 ms
71,680 KB
testcase_07 AC 129 ms
89,088 KB
testcase_08 AC 108 ms
83,328 KB
testcase_09 AC 279 ms
107,520 KB
testcase_10 AC 305 ms
120,600 KB
testcase_11 AC 294 ms
105,828 KB
testcase_12 AC 123 ms
89,832 KB
testcase_13 AC 235 ms
104,192 KB
testcase_14 AC 208 ms
103,996 KB
testcase_15 AC 304 ms
108,976 KB
testcase_16 AC 191 ms
101,980 KB
testcase_17 AC 92 ms
81,532 KB
testcase_18 AC 80 ms
75,904 KB
testcase_19 AC 248 ms
103,168 KB
testcase_20 AC 186 ms
101,932 KB
testcase_21 AC 139 ms
93,952 KB
testcase_22 AC 139 ms
91,652 KB
testcase_23 AC 324 ms
124,224 KB
testcase_24 AC 374 ms
139,940 KB
testcase_25 AC 378 ms
135,020 KB
testcase_26 AC 363 ms
136,432 KB
testcase_27 AC 325 ms
127,016 KB
testcase_28 AC 364 ms
131,248 KB
testcase_29 AC 320 ms
125,416 KB
testcase_30 AC 362 ms
137,464 KB
testcase_31 AC 323 ms
123,180 KB
testcase_32 AC 371 ms
139,944 KB
testcase_33 AC 50 ms
64,256 KB
testcase_34 AC 50 ms
64,640 KB
testcase_35 AC 52 ms
64,000 KB
testcase_36 AC 52 ms
64,000 KB
testcase_37 AC 52 ms
64,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, s = map(int, input().split())
p = list(map(int, input().split()))
if len(p)==1:
    print(1)
    print(1)
    exit()
p=sorted(enumerate(p), key=lambda x:x[1])

cnt=0
retu=[]
if p[1][1] - p[0][1] >s:
    cnt=1
    retu.append(p[0][0]+1)
for i in range(1,a-1):
    if p[i][1]-p[i-1][1]>s and p[i+1][1]-p[i][1]>s:
        cnt+=1
        retu.append(p[i][0]+1)
if p[-1][1] - p[-2][1] >s:
    cnt+=1
    retu.append(p[-1][0]+1)
retu.sort()
print(cnt)
print(*retu)
0