結果

問題 No.1046 Fruits Rush
ユーザー lunnearlunnear
提出日時 2020-05-08 21:57:04
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 53,844 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 00:37:13
合計ジャッジ時間 979 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdlib.h>
using namespace std;

int cmp(const void *a, const void *b)
{
    return *(int*)b - *(int*)a;
}

int main(){
    int n, k;
    cin >> n >> k;
    
    int a[n];
    for(int i = 0; i < n; i++)
        cin >> a[i];
    
    qsort(a, n, sizeof(int), cmp);
    
    int ans = 0;
    for(int i = 0; i < k; i++)
    {
        if((a[i] <= 0) && (i != 0))
            break;
        
        ans += a[i];
    }
    cout << ans << '\n';
    
    return 0;
}
0