結果
問題 | No.1046 Fruits Rush |
ユーザー |
|
提出日時 | 2020-05-08 21:28:54 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 330 bytes |
コンパイル時間 | 2,325 ms |
コンパイル使用メモリ | 200,208 KB |
最終ジャッジ日時 | 2025-01-10 08:06:10 |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 14 |
ソースコード
#include <bits/stdc++.h> int main(){ int n, k; std::cin >> n >> k; std::vector<int> a(n); for(int i = 0; i < n; ++i){ std::cin >> a[i]; } std::sort(a.rbegin(), a.rend()); int ans = a[0]; for(int i = 1; i < k; ++i){ if(a[i] >= 0){ ans += a[i]; } } std::cout << ans << "\n"; return 0; }