結果

問題 No.2774 Wake up Record 2
ユーザー ManjushriMitraManjushriMitra
提出日時 2024-08-03 17:13:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 610 bytes
コンパイル時間 1,837 ms
コンパイル使用メモリ 174,940 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-03 17:13:13
合計ジャッジ時間 3,348 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 WA -
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 16 ms
6,944 KB
testcase_12 AC 8 ms
6,944 KB
testcase_13 AC 31 ms
6,940 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 45 ms
6,940 KB
testcase_17 AC 46 ms
6,940 KB
testcase_18 AC 32 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,m,n) for(int i=m; i<n; ++i)
#define repl(i,m,n) for(ll i=m; i<n; ++i)

int main(){
    int N, K;
    cin >> N >> K;
    vector<int> A(N);
    rep(i, 0, N) cin >> A[i];

    vector<int> B = A;
    sort(B.begin(), B.end());

    int thre = B[K-1];
    vector<int> ans;
    rep(i, 1, N){
        if(A[i-1] <= thre && A[i] > thre){
            ans.push_back(i+1);
        }
    }

    int n = ans.size();
    cout << n << endl;
    rep(i, 0, n){
        cout << ans[i];
        cout << (i == n-1 ? '\n' : ' ');
    }

    return 0;
}
0