結果

問題 No.2803 Bocching Star
ユーザー N-noa21N-noa21
提出日時 2024-09-30 12:26:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 633 ms / 2,000 ms
コード長 402 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 118,288 KB
最終ジャッジ日時 2024-09-30 12:26:33
合計ジャッジ時間 16,273 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,844 KB
testcase_01 AC 35 ms
53,524 KB
testcase_02 AC 37 ms
52,624 KB
testcase_03 AC 105 ms
78,280 KB
testcase_04 AC 497 ms
104,284 KB
testcase_05 AC 269 ms
98,288 KB
testcase_06 AC 90 ms
77,252 KB
testcase_07 AC 203 ms
88,616 KB
testcase_08 AC 132 ms
82,736 KB
testcase_09 AC 551 ms
107,288 KB
testcase_10 AC 541 ms
117,260 KB
testcase_11 AC 521 ms
104,644 KB
testcase_12 AC 187 ms
87,088 KB
testcase_13 AC 435 ms
102,496 KB
testcase_14 AC 310 ms
101,972 KB
testcase_15 AC 537 ms
104,328 KB
testcase_16 AC 286 ms
98,612 KB
testcase_17 AC 121 ms
80,840 KB
testcase_18 AC 108 ms
79,572 KB
testcase_19 AC 467 ms
102,160 KB
testcase_20 AC 277 ms
98,316 KB
testcase_21 AC 233 ms
93,108 KB
testcase_22 AC 224 ms
90,852 KB
testcase_23 AC 560 ms
117,372 KB
testcase_24 AC 633 ms
118,032 KB
testcase_25 AC 590 ms
117,836 KB
testcase_26 AC 611 ms
117,952 KB
testcase_27 AC 575 ms
117,392 KB
testcase_28 AC 585 ms
118,288 KB
testcase_29 AC 605 ms
117,748 KB
testcase_30 AC 594 ms
118,136 KB
testcase_31 AC 568 ms
117,624 KB
testcase_32 AC 594 ms
117,992 KB
testcase_33 AC 52 ms
67,488 KB
testcase_34 AC 53 ms
67,984 KB
testcase_35 AC 55 ms
66,612 KB
testcase_36 AC 54 ms
66,436 KB
testcase_37 AC 52 ms
67,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S = map(int, input().split())
P = list(map(int, input().split()))
A = []
for i,j in enumerate(P):
    A.append((j,i+1))
A.sort()
ans = []
for i in range(N):
    flag = False

    if i>0 and abs(A[i][0]-A[i-1][0]) <= S:
        flag = True

    if i<N-1 and abs(A[i][0]-A[i+1][0]) <= S:
        flag = True
    
    if flag == False:
        ans.append(A[i][1])
print(len(ans))
ans.sort()
print(*ans)
0