結果
問題 |
No.5 数字のブロック
|
ユーザー |
![]() |
提出日時 | 2017-05-07 20:38:43 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 4 ms / 5,000 ms |
コード長 | 493 bytes |
コンパイル時間 | 718 ms |
コンパイル使用メモリ | 64,688 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-18 11:02:19 |
合計ジャッジ時間 | 1,601 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #define SIZE 30 using std::vector; using std::cin; using std::cout; using std::endl; using std::sort; int main() { std::cin.tie(0);std::ios::sync_with_stdio(false); int l; int n; vector<int> w; cin >> l;cin >> n; int input; for(int i=0;i<n;++i)cin >> input,w.push_back(input); sort(w.begin(),w.end()); int sum=0; for(int i=0;i<n;++i){ sum+=w[i]; if(sum>l){ cout << i; return 0; } } cout << n; return 0; }