結果

問題 No.2774 Wake up Record 2
ユーザー cleanttedcleantted
提出日時 2024-06-25 14:14:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 109,312 KB
最終ジャッジ日時 2024-06-25 14:14:12
合計ジャッジ時間 2,830 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,376 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 44 ms
53,632 KB
testcase_03 AC 43 ms
53,760 KB
testcase_04 AC 43 ms
53,248 KB
testcase_05 AC 44 ms
53,248 KB
testcase_06 AC 46 ms
53,632 KB
testcase_07 AC 44 ms
53,376 KB
testcase_08 AC 44 ms
53,376 KB
testcase_09 AC 67 ms
70,364 KB
testcase_10 AC 48 ms
55,296 KB
testcase_11 AC 150 ms
84,552 KB
testcase_12 AC 110 ms
80,000 KB
testcase_13 AC 245 ms
99,200 KB
testcase_14 AC 83 ms
87,296 KB
testcase_15 AC 83 ms
87,168 KB
testcase_16 AC 83 ms
87,296 KB
testcase_17 AC 105 ms
95,744 KB
testcase_18 AC 124 ms
109,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

C = Counter(A)
t = 0
for a, v in sorted(list(C.items())):
  t += v
  if t == K:
    break

res = []
for i in range(N - 1):
  if A[i] <= a and A[i + 1] > a:
    res.append(i + 2)

print(len(res))
print(*res)
    
0