結果

問題 No.2774 Wake up Record 2
ユーザー hitonanodehitonanode
提出日時 2024-06-07 21:33:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,644 KB
最終ジャッジ日時 2024-06-07 21:33:46
合計ジャッジ時間 1,612 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 24 ms
10,624 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 AC 24 ms
10,624 KB
testcase_07 AC 24 ms
10,624 KB
testcase_08 AC 24 ms
10,496 KB
testcase_09 AC 26 ms
11,136 KB
testcase_10 AC 24 ms
10,752 KB
testcase_11 AC 45 ms
14,196 KB
testcase_12 AC 35 ms
12,672 KB
testcase_13 AC 71 ms
17,820 KB
testcase_14 AC 74 ms
21,520 KB
testcase_15 AC 77 ms
21,644 KB
testcase_16 AC 68 ms
21,396 KB
testcase_17 AC 88 ms
21,520 KB
testcase_18 AC 69 ms
20,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))

sorted_A = sorted(A)
thres = sorted_A[K - 1]

ret = []
for i in range(1, N):
    if A[i - 1] <= thres and A[i] > thres:
        ret.append(i)

print(len(ret))
print(" ".join(str(x + 1) for x in ret))
0