結果
問題 | No.5 数字のブロック |
ユーザー | nukacha |
提出日時 | 2017-05-14 06:32:30 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 5 ms / 5,000 ms |
コード長 | 424 bytes |
コンパイル時間 | 747 ms |
コンパイル使用メモリ | 74,956 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-18 11:04:24 |
合計ジャッジ時間 | 1,799 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
#include <iostream> #include <vector> #include <algorithm> int main() { int l, n; int c = 0; std::vector<int> w; std::cin >> l >> n; w.resize(n); for (int i = 0; i < n; i++) { std::cin >> w[i]; } std::sort(w.begin(), w.end()); for (int i = 0; i < n; i++) { l -= w[i]; if (l < 0) { break; } c++; } std::cout << c << std::endl; }