結果
問題 | No.2774 Wake up Record 2 |
ユーザー | rieaaddlreiuu |
提出日時 | 2024-06-07 23:20:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 557 bytes |
コンパイル時間 | 2,536 ms |
コンパイル使用メモリ | 171,100 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 23:20:57 |
合計ジャッジ時間 | 2,926 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 17 ms
5,376 KB |
testcase_12 | AC | 10 ms
5,376 KB |
testcase_13 | AC | 34 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 44 ms
5,376 KB |
testcase_17 | AC | 48 ms
5,376 KB |
testcase_18 | AC | 29 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int N,K,a; cin >> N >> K; vector<int> A(N),X(N); for(int i=0;i<N;i++){ cin >> a; A[i] = a; X[i] = a; } sort(X.begin(),X.end()); int thereshold = X[K-1]; int count = 0; for(int k=1;k<N;k++){ if(A[k] > thereshold && A[k-1] <= thereshold){ count++; } } cout << count << endl; for(int k=1;k<N;k++){ if(A[k] > thereshold && A[k-1] <= thereshold){ cout << k+1 << " "; } } }