結果
問題 |
No.156 キャンディー・ボックス
|
ユーザー |
|
提出日時 | 2020-08-16 09:32:12 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 866 bytes |
コンパイル時間 | 1,026 ms |
コンパイル使用メモリ | 87,364 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-11 10:25:07 |
合計ジャッジ時間 | 1,992 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 30 |
ソースコード
#include <iostream> //cin, cout #include <vector> //vector #include <algorithm> //sort,min,max #include <string> //string #include <ios> //fixed #include <iomanip> //setprecision #include <utility> //swap #include <cstdlib> //abs(int) #include <cmath> //sqrt #include <sstream> //stringstream,getline using namespace std; inline std::vector<std::string> Split_String(const std::string& str, const char key) { std::vector<std::string> result; std::stringstream SS(str); std::string temp; while (std::getline(SS, temp, key)) { result.push_back(temp); } return(result); } int main() { int N, M; cin >> N >> M; vector<int> C(N); for (int i = 0; i < N; i++) { cin >> C[i]; } sort(C.begin(), C.end()); int i = 0; while (M > 0) { M -= C[i]; i++; } if (M == 0) { cout << i << endl; } else { cout << i - 1 << endl; } return 0; }