結果

問題 No.1046 Fruits Rush
ユーザー KKT89
提出日時 2020-05-27 18:02:35
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 831 ms
コンパイル使用メモリ 100,728 KB
最終ジャッジ日時 2025-01-10 15:58:03
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <stack>
#include <map>
#include <math.h>
using namespace std;
typedef long long int ll;

int main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	int n,k; cin >> n >> k;
	vector<int> a(n);
	for(int i=0;i<n;i++){
		cin >> a[i];
	}
	sort(a.rbegin(), a.rend());
	for(int i=1;i<k;i++){
		if(a[i]<=0)break;
		a[0]+=a[i];
	}
	printf("%d\n",a[0]);
}
0