結果

問題 No.1046 Fruits Rush
ユーザー sarah Lewissarah Lewis
提出日時 2021-01-16 17:29:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 431 bytes
コンパイル時間 1,609 ms
コンパイル使用メモリ 171,024 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 20:38:56
合計ジャッジ時間 2,324 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(ll i=0;i<(ll)(n);i++)
#define REP(i,k,n) for(ll i=k;i<(ll)(n);i++)
#define fore(i,a) for(auto &i:a)
using namespace std;
using ll = long long; 

int main() {
    int N,K; cin >> N >> K;
    vector<int> A(N);
    rep(i,N) cin >> A[i];
    sort(A.begin(),A.end(),greater<int>());
    int c = 0;
    rep(i,K) {
        if(A[i] < 0) break;
        c += A[i];
    }
    cout << c << endl;
}
0