結果

問題 No.2803 Bocching Star
ユーザー vwxyzvwxyz
提出日時 2024-07-17 09:13:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 885 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,472 KB
最終ジャッジ日時 2024-07-17 09:13:26
合計ジャッジ時間 19,414 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 97 ms
15,596 KB
testcase_04 AC 579 ms
44,744 KB
testcase_05 AC 266 ms
29,816 KB
testcase_06 AC 65 ms
14,080 KB
testcase_07 AC 222 ms
23,192 KB
testcase_08 AC 125 ms
18,080 KB
testcase_09 AC 575 ms
49,612 KB
testcase_10 AC 612 ms
50,380 KB
testcase_11 AC 678 ms
47,636 KB
testcase_12 AC 199 ms
21,668 KB
testcase_13 AC 538 ms
43,300 KB
testcase_14 AC 336 ms
32,824 KB
testcase_15 AC 726 ms
46,088 KB
testcase_16 AC 365 ms
29,624 KB
testcase_17 AC 123 ms
17,344 KB
testcase_18 AC 88 ms
15,760 KB
testcase_19 AC 555 ms
43,320 KB
testcase_20 AC 311 ms
30,016 KB
testcase_21 AC 231 ms
26,076 KB
testcase_22 AC 265 ms
25,260 KB
testcase_23 AC 674 ms
51,348 KB
testcase_24 AC 885 ms
51,220 KB
testcase_25 AC 792 ms
51,472 KB
testcase_26 AC 806 ms
51,344 KB
testcase_27 AC 722 ms
51,340 KB
testcase_28 AC 764 ms
51,348 KB
testcase_29 AC 722 ms
51,472 KB
testcase_30 AC 818 ms
51,468 KB
testcase_31 AC 685 ms
51,340 KB
testcase_32 AC 863 ms
51,348 KB
testcase_33 AC 36 ms
11,008 KB
testcase_34 AC 39 ms
11,008 KB
testcase_35 AC 35 ms
11,008 KB
testcase_36 AC 37 ms
11,136 KB
testcase_37 AC 36 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S=map(int,input().split())
PI=[]
for i,p in enumerate(map(int,input().split())):
    PI.append((p,i))
PI.sort()
ans_lst=[]
for i in range(N):
    if i and S>=abs(PI[i][0]-PI[i-1][0]):
        continue
    if i<N-1 and S>=abs(PI[i][0]-PI[i+1][0]):
        continue
    ans_lst.append(PI[i][1])
ans_lst.sort()
print(len(ans_lst))
print(*[ans+1 for ans in ans_lst])
0