結果

問題 No.2774 Wake up Record 2
ユーザー srjywrdnprkt
提出日時 2024-06-20 10:55:39
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 20 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 2,125 ms
コンパイル使用メモリ 201,200 KB
最終ジャッジ日時 2025-02-21 23:30:31
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    ll N, K, S, c;
    cin >> N >> K;
    vector<ll> A(N), B, ans;
    for (int i=0; i<N; i++) cin >> A[i];
    B = A;
    sort(B.begin(), B.end());
    c = B[K-1];

    for (int i=1; i<N; i++){
        if (A[i-1] <= c && A[i] > c) ans.push_back(i+1);
    }
    cout << ans.size() << endl;
    for (auto x : ans) cout << x << " ";
    cout << endl;

    return 0;
}
0