結果

問題 No.2774 Wake up Record 2
ユーザー rlangevinrlangevin
提出日時 2024-06-07 21:43:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 96,436 KB
最終ジャッジ日時 2024-06-07 21:43:31
合計ジャッジ時間 2,065 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,080 KB
testcase_01 AC 38 ms
53,260 KB
testcase_02 AC 38 ms
52,484 KB
testcase_03 AC 38 ms
52,020 KB
testcase_04 AC 39 ms
52,316 KB
testcase_05 AC 38 ms
52,220 KB
testcase_06 AC 39 ms
52,016 KB
testcase_07 AC 39 ms
52,276 KB
testcase_08 AC 38 ms
53,024 KB
testcase_09 AC 47 ms
60,668 KB
testcase_10 AC 41 ms
53,928 KB
testcase_11 AC 64 ms
73,084 KB
testcase_12 AC 57 ms
69,640 KB
testcase_13 AC 79 ms
84,936 KB
testcase_14 AC 66 ms
85,120 KB
testcase_15 AC 68 ms
85,884 KB
testcase_16 AC 65 ms
84,284 KB
testcase_17 AC 94 ms
96,436 KB
testcase_18 AC 64 ms
82,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
D = sorted(A)
v = D[K-1]

ans = []
for i in range(1, N):
    if A[i-1] <= v and A[i] > v:
        ans.append(i + 1)
        
print(len(ans))
print(*ans)
0