結果

問題 No.2774 Wake up Record 2
ユーザー 👑 KA37RIKA37RI
提出日時 2024-06-07 22:31:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 228 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 89,048 KB
最終ジャッジ日時 2024-06-07 22:31:58
合計ジャッジ時間 2,130 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 WA -
testcase_06 RE -
testcase_07 WA -
testcase_08 WA -
testcase_09 RE -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 57 ms
76,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = [int(x) for x in input().split()]
a = [int(x) for x in input().split()]

b = sorted(a)
b.append(10 ** 10)

x = b[k]

c = []

for i in range(1, n):
	if a[i] <= x and a[i+1] > x:
		c.append(i + 1)
		
print(len(c))
print(*c)
0