結果

問題 No.2803 Bocching Star
ユーザー Meso MesoMeso Meso
提出日時 2024-08-19 15:22:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 760 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,652 KB
最終ジャッジ日時 2024-08-19 15:22:25
合計ジャッジ時間 17,999 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 92 ms
14,456 KB
testcase_04 AC 564 ms
36,304 KB
testcase_05 AC 276 ms
24,432 KB
testcase_06 AC 65 ms
13,312 KB
testcase_07 AC 205 ms
20,544 KB
testcase_08 AC 122 ms
16,348 KB
testcase_09 AC 611 ms
38,748 KB
testcase_10 AC 620 ms
39,500 KB
testcase_11 AC 643 ms
39,572 KB
testcase_12 AC 181 ms
19,632 KB
testcase_13 AC 505 ms
33,844 KB
testcase_14 AC 357 ms
26,664 KB
testcase_15 AC 642 ms
39,384 KB
testcase_16 AC 325 ms
26,072 KB
testcase_17 AC 138 ms
15,692 KB
testcase_18 AC 89 ms
14,360 KB
testcase_19 AC 523 ms
34,736 KB
testcase_20 AC 296 ms
25,076 KB
testcase_21 AC 231 ms
22,012 KB
testcase_22 AC 232 ms
22,036 KB
testcase_23 AC 629 ms
40,656 KB
testcase_24 AC 760 ms
44,652 KB
testcase_25 AC 680 ms
43,116 KB
testcase_26 AC 751 ms
43,600 KB
testcase_27 AC 687 ms
41,452 KB
testcase_28 AC 706 ms
42,448 KB
testcase_29 AC 664 ms
40,812 KB
testcase_30 AC 725 ms
43,744 KB
testcase_31 AC 639 ms
40,428 KB
testcase_32 AC 739 ms
44,652 KB
testcase_33 AC 33 ms
11,136 KB
testcase_34 AC 34 ms
11,136 KB
testcase_35 AC 31 ms
11,136 KB
testcase_36 AC 30 ms
11,136 KB
testcase_37 AC 33 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, s = map(int, input().split())
p = list(map(int, input().split()))

star = [0] * n
for i in range(n):
    star [i] = (p[i], i+1)

star.sort()

ans = []
for i in range(n):
    k, v = star[i]
    flag = True
    if i > 0:
        kk, vv = star[i-1]
        if abs(k - kk) <= s:
            flag = False
    if i < n - 1:
        kk, vv = star[i+1]
        if abs(k - kk) <= s:
            flag = False

    if flag:
        ans.append(v)

print(len(ans))
print(*sorted(ans))
0