結果
| 問題 |
No.1046 Fruits Rush
|
| コンテスト | |
| ユーザー |
aki1
|
| 提出日時 | 2020-09-13 00:18:44 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 416 bytes |
| コンパイル時間 | 1,707 ms |
| コンパイル使用メモリ | 165,864 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2025-01-02 15:07:43 |
| 合計ジャッジ時間 | 2,677 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 WA * 3 |
ソースコード
// No.1046 Fruits Rush
#include <bits/stdc++.h>
#define rep(i, n) for(int i=0; i<(int)(n); i++)
using namespace std;
using ll = long long;
using ull = unsigned long long;
int main(){
int n, k;
cin >> n >> k;
vector<int> a(n);
rep(i, n) cin >> a[i];
int ans = 0;
sort(a.rbegin(), a.rend());
rep(i, k){
if(ans < ans+a[i]) ans += a[i];
}
cout << ans << endl;
return 0;
}
aki1