結果
| 問題 | No.1380 Borderline |
| コンテスト | |
| ユーザー |
misora192
|
| 提出日時 | 2021-02-14 21:22:36 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 607 bytes |
| 記録 | |
| コンパイル時間 | 1,439 ms |
| コンパイル使用メモリ | 169,704 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-22 08:35:25 |
| 合計ジャッジ時間 | 2,854 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 41 |
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i=(0);i<(n);i++)
using namespace std;
typedef long long ll;
template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }
int main(){
cin.tie(0);
ios::sync_with_stdio(false);
int N, K;
cin >> N >> K;
vector<int> p(N);
rep(i, N) cin >> p[i];
int ans = 0;
for(int b = 400; b >= 0; b--){
int cnt = count_if(p.begin(), p.end(), [&](int x){ return x >= b; });
if(cnt <= K){
chmax(ans, cnt);
}
}
cout << ans << endl;
}
misora192