結果
問題 | No.1046 Fruits Rush |
ユーザー | 山下 |
提出日時 | 2020-05-08 21:26:49 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 571 bytes |
コンパイル時間 | 1,547 ms |
コンパイル使用メモリ | 172,136 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-03 23:43:17 |
合計ジャッジ時間 | 2,115 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 14 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; ll mod = 1000000007; ll r(ll x, ll y) { if (y == 0) return 1; else if (y % 2 == 0) return r(x, y/2) * r(x, y/2) % mod; else return x * r(x, (y-1)/2) % mod * r(x, (y-1)/2) % mod; } int main() { int n, k; cin >> n >> k; priority_queue<int> pq; for (int i = 0; i < n; i++) { int a; cin >> a; pq.push(a); } int count = 0; for (int i = 0;i < k; i++) { if (pq.top() < 0 && i > 0) { break; } count += pq.top(); pq.pop(); } cout << count <<endl; }