結果

問題 No.2803 Bocching Star
ユーザー pitPpitP
提出日時 2024-07-12 21:08:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 673 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 117,184 KB
最終ジャッジ日時 2024-07-12 21:09:42
合計ジャッジ時間 16,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,568 KB
testcase_01 AC 38 ms
52,648 KB
testcase_02 AC 37 ms
52,132 KB
testcase_03 AC 106 ms
78,360 KB
testcase_04 AC 526 ms
106,416 KB
testcase_05 AC 297 ms
92,692 KB
testcase_06 AC 89 ms
77,172 KB
testcase_07 AC 214 ms
85,564 KB
testcase_08 AC 142 ms
81,216 KB
testcase_09 AC 605 ms
108,736 KB
testcase_10 AC 635 ms
105,444 KB
testcase_11 AC 584 ms
105,760 KB
testcase_12 AC 193 ms
84,208 KB
testcase_13 AC 484 ms
103,656 KB
testcase_14 AC 341 ms
95,472 KB
testcase_15 AC 577 ms
106,284 KB
testcase_16 AC 312 ms
92,892 KB
testcase_17 AC 160 ms
80,280 KB
testcase_18 AC 112 ms
79,100 KB
testcase_19 AC 497 ms
103,876 KB
testcase_20 AC 335 ms
92,776 KB
testcase_21 AC 245 ms
88,912 KB
testcase_22 AC 243 ms
87,216 KB
testcase_23 AC 631 ms
106,060 KB
testcase_24 AC 673 ms
117,184 KB
testcase_25 AC 654 ms
112,180 KB
testcase_26 AC 662 ms
113,576 KB
testcase_27 AC 632 ms
105,544 KB
testcase_28 AC 668 ms
107,840 KB
testcase_29 AC 624 ms
105,776 KB
testcase_30 AC 663 ms
113,856 KB
testcase_31 AC 623 ms
106,028 KB
testcase_32 AC 669 ms
116,404 KB
testcase_33 AC 54 ms
65,988 KB
testcase_34 AC 53 ms
67,628 KB
testcase_35 AC 53 ms
67,740 KB
testcase_36 AC 54 ms
68,492 KB
testcase_37 AC 54 ms
68,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, S = map(int, input().split())
P = list(map(int, input().split()))

if N == 1:
    print(1)
    print(1)
    exit()

Q = [(P[i], i) for i in range(N)]
Q.sort()

ans = []
for i in range(N):
    if i == 0:
        if Q[i + 1][0] - Q[i][0] > S :
            ans.append(Q[i][1] + 1)
    elif i == N - 1:
        if Q[i][0] - Q[i - 1][0] > S :
            ans.append(Q[i][1] + 1)
    else :
        if Q[i][0] - Q[i - 1][0] > S and Q[i + 1][0] - Q[i][0] > S:
            ans.append(Q[i][1] + 1)

ans.sort()
print(len(ans))
print(*ans)
0