結果
問題 | No.5 数字のブロック |
ユーザー |
![]() |
提出日時 | 2018-03-04 09:27:07 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 449 bytes |
コンパイル時間 | 432 ms |
コンパイル使用メモリ | 63,512 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-06 13:54:48 |
合計ジャッジ時間 | 1,568 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 WA * 3 |
ソースコード
#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){ L+=circle.top(); circle.pop(); counter++; } cout << counter << endl; }