結果

問題 No.2774 Wake up Record 2
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-06-07 21:28:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 178 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 98,048 KB
最終ジャッジ日時 2024-06-07 21:28:38
合計ジャッジ時間 1,914 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 34 ms
51,456 KB
testcase_02 WA -
testcase_03 AC 33 ms
51,712 KB
testcase_04 AC 33 ms
51,584 KB
testcase_05 WA -
testcase_06 AC 34 ms
51,712 KB
testcase_07 AC 33 ms
52,224 KB
testcase_08 AC 34 ms
51,968 KB
testcase_09 AC 44 ms
61,824 KB
testcase_10 AC 39 ms
52,992 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 69 ms
86,272 KB
testcase_15 AC 73 ms
86,016 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 68 ms
82,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
A=sorted(a)
ans=[]
for i in range(2,n):
	if a[i-1]<=A[k-1] and a[i]>A[k-1]:
		ans+=[i+1]
print(len(ans))
print(*ans)
0