結果

問題 No.2803 Bocching Star
ユーザー ra5anchorra5anchor
提出日時 2024-07-13 13:00:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 690 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 119,888 KB
最終ジャッジ日時 2024-07-13 13:00:32
合計ジャッジ時間 16,809 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,136 KB
testcase_01 AC 36 ms
52,132 KB
testcase_02 AC 36 ms
53,376 KB
testcase_03 AC 127 ms
78,448 KB
testcase_04 AC 562 ms
105,312 KB
testcase_05 AC 297 ms
98,948 KB
testcase_06 AC 90 ms
77,456 KB
testcase_07 AC 212 ms
88,876 KB
testcase_08 AC 149 ms
83,140 KB
testcase_09 AC 595 ms
107,608 KB
testcase_10 AC 648 ms
118,536 KB
testcase_11 AC 595 ms
106,040 KB
testcase_12 AC 193 ms
87,004 KB
testcase_13 AC 531 ms
104,356 KB
testcase_14 AC 348 ms
102,796 KB
testcase_15 AC 560 ms
105,232 KB
testcase_16 AC 313 ms
98,768 KB
testcase_17 AC 131 ms
81,000 KB
testcase_18 AC 114 ms
79,924 KB
testcase_19 AC 518 ms
103,708 KB
testcase_20 AC 319 ms
98,900 KB
testcase_21 AC 252 ms
93,160 KB
testcase_22 AC 240 ms
91,048 KB
testcase_23 AC 635 ms
119,236 KB
testcase_24 AC 685 ms
119,476 KB
testcase_25 AC 649 ms
119,604 KB
testcase_26 AC 670 ms
119,888 KB
testcase_27 AC 673 ms
119,500 KB
testcase_28 AC 657 ms
119,500 KB
testcase_29 AC 670 ms
119,380 KB
testcase_30 AC 676 ms
119,752 KB
testcase_31 AC 690 ms
119,092 KB
testcase_32 AC 658 ms
119,760 KB
testcase_33 AC 54 ms
66,144 KB
testcase_34 AC 57 ms
66,988 KB
testcase_35 AC 56 ms
66,344 KB
testcase_36 AC 55 ms
66,596 KB
testcase_37 AC 55 ms
67,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, S = map(int, input().split())
P = list(map(int, input().split()))
L = list(zip(P, list(range(N))))
L.sort()

OK = [False]*N
for i in range(N-1):
    if abs(L[i+1][0] - L[i][0]) <= S:
        OK[L[i+1][1]] = True
        OK[L[i][1]] = True
ans = []
for i in range(N):
    if OK[i] == False:
        ans.append(i+1)
print(len(ans))
print(*ans)
0