結果

問題 No.2774 Wake up Record 2
ユーザー 👑 KA37RIKA37RI
提出日時 2024-06-07 22:36:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 91,648 KB
最終ジャッジ日時 2024-06-07 22:36:33
合計ジャッジ時間 2,043 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 34 ms
51,328 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 34 ms
51,712 KB
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 34 ms
52,096 KB
testcase_09 AC 44 ms
60,056 KB
testcase_10 AC 37 ms
52,736 KB
testcase_11 AC 63 ms
70,656 KB
testcase_12 AC 58 ms
67,712 KB
testcase_13 AC 81 ms
81,152 KB
testcase_14 AC 65 ms
78,336 KB
testcase_15 AC 66 ms
78,720 KB
testcase_16 AC 70 ms
78,592 KB
testcase_17 AC 90 ms
91,648 KB
testcase_18 AC 61 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

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-1]

c = []

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