結果
| 問題 | No.617 Nafmo、買い出しに行く | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2020-04-09 16:51:42 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 73 ms / 2,000 ms | 
| コード長 | 526 bytes | 
| コンパイル時間 | 910 ms | 
| コンパイル使用メモリ | 71,296 KB | 
| 最終ジャッジ日時 | 2025-01-09 15:29:42 | 
| ジャッジサーバーID (参考情報) | judge1 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 20 | 
ソースコード
#include <iostream>
#include <vector>
void solve() {
    int n, k;
    std::cin >> n >> k;
    std::vector<int> xs(n);
    for (auto& x : xs) std::cin >> x;
    int ans = 0;
    for (int b = 0; b < (1 << n); ++b) {
        int s = 0;
        for (int i = 0; i < n; ++i) {
            if ((b >> i) & 1) s += xs[i];
        }
        if (s <= k) ans = std::max(ans, s);
    }
    std::cout << ans << std::endl;
}
int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);
    solve();
    return 0;
}
            
            
            
        