結果

問題 No.2803 Bocching Star
ユーザー KudeKude
提出日時 2024-07-12 21:22:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 712 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 114,916 KB
最終ジャッジ日時 2024-07-12 21:22:27
合計ジャッジ時間 16,743 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,220 KB
testcase_01 AC 38 ms
52,400 KB
testcase_02 AC 38 ms
53,016 KB
testcase_03 AC 108 ms
78,136 KB
testcase_04 AC 543 ms
99,964 KB
testcase_05 AC 295 ms
92,496 KB
testcase_06 AC 93 ms
77,040 KB
testcase_07 AC 217 ms
85,092 KB
testcase_08 AC 143 ms
81,296 KB
testcase_09 AC 601 ms
103,800 KB
testcase_10 AC 659 ms
104,176 KB
testcase_11 AC 632 ms
102,940 KB
testcase_12 AC 196 ms
83,748 KB
testcase_13 AC 498 ms
98,696 KB
testcase_14 AC 351 ms
97,620 KB
testcase_15 AC 607 ms
105,864 KB
testcase_16 AC 313 ms
92,244 KB
testcase_17 AC 132 ms
79,696 KB
testcase_18 AC 112 ms
78,968 KB
testcase_19 AC 531 ms
98,448 KB
testcase_20 AC 304 ms
91,984 KB
testcase_21 AC 249 ms
88,032 KB
testcase_22 AC 242 ms
86,356 KB
testcase_23 AC 644 ms
104,516 KB
testcase_24 AC 712 ms
114,916 KB
testcase_25 AC 703 ms
110,036 KB
testcase_26 AC 703 ms
110,916 KB
testcase_27 AC 645 ms
104,660 KB
testcase_28 AC 688 ms
106,336 KB
testcase_29 AC 668 ms
103,900 KB
testcase_30 AC 709 ms
112,216 KB
testcase_31 AC 668 ms
104,160 KB
testcase_32 AC 692 ms
114,768 KB
testcase_33 AC 54 ms
66,912 KB
testcase_34 AC 55 ms
66,808 KB
testcase_35 AC 55 ms
66,204 KB
testcase_36 AC 56 ms
66,472 KB
testcase_37 AC 56 ms
67,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, s = map(int, input().split())
p = sorted((x, i) for i, x in enumerate(map(int, input().split()), 1))
ans = []
for i in range(n):
    if i and p[i][0] - p[i-1][0] <= s or i + 1 < n and p[i+1][0] - p[i][0] <= s:
        pass
    else:
        ans.append(p[i][1])
ans.sort()
print(len(ans))
print(*ans)
0