結果

問題 No.2774 Wake up Record 2
ユーザー のーとのーと
提出日時 2024-07-10 15:08:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 636 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,516 KB
最終ジャッジ日時 2024-07-10 15:08:37
合計ジャッジ時間 3,046 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,368 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 31 ms
10,368 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 33 ms
10,880 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 56 ms
13,936 KB
testcase_12 AC 45 ms
12,160 KB
testcase_13 AC 105 ms
17,560 KB
testcase_14 AC 81 ms
21,516 KB
testcase_15 AC 83 ms
21,388 KB
testcase_16 AC 91 ms
21,232 KB
testcase_17 AC 120 ms
21,384 KB
testcase_18 AC 83 ms
20,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
asleep=sorted(A)[K-1]#眠っている上限の元気度
ans=[]
for i in range(1,N):
	if A[i]>asleep and A[i-1]<=asleep:
		ans.append(i+1)
print(len(ans))
print(*ans)
0