結果
問題 | No.1046 Fruits Rush |
ユーザー | shop_one |
提出日時 | 2020-05-08 21:21:32 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 641 bytes |
コンパイル時間 | 805 ms |
コンパイル使用メモリ | 98,116 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-03 23:10:58 |
合計ジャッジ時間 | 1,417 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 14 |
ソースコード
// I SELL YOU...! #include<iostream> #include<vector> #include<algorithm> #include<functional> #include<queue> #include<chrono> #include<iomanip> #include<map> #include<set> using namespace std; using ll = long long; using P = pair<ll,ll>; using TP = tuple<ll,ll,ll>; void init_io(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(18); } signed main(){ init_io(); ll n,k; cin >> n >> k; ll sum=0; vector<ll> a(n); for(int i=0;i<n;i++){ cin >> a[i]; } sort(a.begin(),a.end(),greater<ll>()); sum += a[0]; for(int i=1;i<k;i++){ if(a[i]>0) sum += a[i]; } cout << sum << endl; }