結果
問題 | No.1454 ツブ消ししとるなEasy |
ユーザー | arashin |
提出日時 | 2021-03-31 21:36:16 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 554 bytes |
コンパイル時間 | 2,062 ms |
コンパイル使用メモリ | 171,836 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-09 05:54:11 |
合計ジャッジ時間 | 4,236 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 29 ms
6,944 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using u64 = uint_least64_t; using s64 = int_least64_t; using ll = uint_least64_t; int main(){ int n,m,x,y; cin >> n >> m >> x >> y; vector<int> a; for (int i = 0; i < n; i++){ int aa; cin >> aa; if (aa > y){ a.push_back(aa); } } if (a.size() < m){ cout << "Handicapped" << endl; } sort(a.begin(),a.end()); int ans = 0; for (int i = a.size()-1; i >= a.size()-m; i--){ ans += a[i]; } if (a[a.size()-m-1] >= x){ cout << "Handicapped" << endl; }else{ cout << ans << endl; } }