結果
問題 |
No.5 数字のブロック
|
ユーザー |
![]() |
提出日時 | 2018-03-04 09:28:26 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 4 ms / 5,000 ms |
コード長 | 470 bytes |
コンパイル時間 | 802 ms |
コンパイル使用メモリ | 63,912 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-18 12:08:32 |
合計ジャッジ時間 | 1,561 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
#include <iostream> #include <queue> using namespace std; int main(){ int L,N; cin >> L >> N; priority_queue<int> circle; for(int i=0 ; i<N ; i++ ){ int x;cin >> x; circle.push(x*-1); } int counter=0; while(L+circle.top()>=0 && circle.size()!=0 ){ L+=circle.top(); circle.pop(); counter++; } cout << counter << endl; }