結果

問題 No.2774 Wake up Record 2
ユーザー miho-4miho-4
提出日時 2024-06-07 23:05:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 395 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 88,800 KB
最終ジャッジ日時 2024-06-07 23:06:03
合計ジャッジ時間 1,866 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,892 KB
testcase_01 AC 33 ms
52,072 KB
testcase_02 AC 32 ms
52,204 KB
testcase_03 AC 32 ms
51,840 KB
testcase_04 AC 32 ms
52,472 KB
testcase_05 AC 32 ms
51,884 KB
testcase_06 AC 34 ms
52,460 KB
testcase_07 AC 33 ms
52,972 KB
testcase_08 AC 38 ms
52,744 KB
testcase_09 AC 42 ms
62,320 KB
testcase_10 AC 37 ms
58,336 KB
testcase_11 AC 55 ms
75,472 KB
testcase_12 AC 53 ms
69,392 KB
testcase_13 AC 76 ms
85,500 KB
testcase_14 AC 69 ms
86,584 KB
testcase_15 AC 73 ms
87,524 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
L=list(map(int,input().split()))

def f(x):
	cnt=0
	for e in L:
		if e<=x:
			cnt+=1
	if cnt==k:
		return -1
	else:
		if k<cnt:
			return 1
		else:
			return 0

l,r=0,10**9+1
while l<r:
	m=(l+r)//2
	x=f(m)
	if x==-1:
		break
	else:
		if x:
			r=m-1
		else:
			l=m+1

ans=[]
for i in range(1,n):
	if L[i-1]<=m and m<L[i]:
		ans.append(i+1)
print(len(ans))
print(*ans)
0