結果

問題 No.2774 Wake up Record 2
ユーザー shizushizu
提出日時 2024-06-07 22:40:56
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 17 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 2,852 ms
コンパイル使用メモリ 257,416 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 22:41:02
合計ジャッジ時間 3,541 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 14 ms
5,376 KB
testcase_14 AC 14 ms
5,376 KB
testcase_15 AC 14 ms
5,376 KB
testcase_16 AC 14 ms
5,376 KB
testcase_17 AC 17 ms
5,376 KB
testcase_18 AC 11 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
//#include<atcoder/all>
//using namespace atcoder;
using ll = long long;
using ull = unsigned long long;
#define rep(i,n) for(int i=0;i<(n);++i)

int main(){
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n,k;
	cin>>n>>k;
	vector<int>a(n);
	for(int i=0;i<n;++i)cin>>a[i];
	vector<int>b = a;
	ranges::sort(a);
	int key = a[k-1];

	vector<int>ans;
	for(int i=0;i<n;++i){
		if(b[i]<=key) continue;
		ans.emplace_back(i+1);
		while(i<n && b[i]>key){
			i++;
		}
	}
	int m = ans.size();
	cout << m << endl;
	for(int i=0;i<m;++i)cout << ans[i] << " ";
	cout << endl;

}
0