結果

問題 No.1046 Fruits Rush
ユーザー Yumekumo
提出日時 2020-05-20 17:03:04
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 969 ms
コンパイル使用メモリ 76,228 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-01 23:40:01
合計ジャッジ時間 1,518 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;

int main() {
    int n, k;
    int x = 0; //美味しさ

    cin >> n >> k;

    vector<int> a(n);    

    for(int i=0; i<n; i++) {
        cin >> a.at(i);
    }

    sort(a.begin(), a.end());               
    reverse(a.begin(), a.end());

    x += a.at(0);

    for(int i=1; i<k; i++){
        if(a.at(i) > 0){
            x += a.at(i); 
        }
    }

    cout << x << endl;
}
0