結果
| 問題 | No.2492 Knapsack Problem? | 
| コンテスト | |
| ユーザー |  kolvlmam3 | 
| 提出日時 | 2023-10-13 00:34:45 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 478 bytes | 
| コンパイル時間 | 1,852 ms | 
| コンパイル使用メモリ | 193,580 KB | 
| 最終ジャッジ日時 | 2025-02-17 06:53:24 | 
| ジャッジサーバーID (参考情報) | judge5 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 9 | 
ソースコード
#include <bits/stdc++.h>
#ifdef local
#include "debug.hpp"
#endif
using namespace std;
int main(void) {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    constexpr char endl = '\n';
    int n, W;
    cin >> n >> W;
    vector<int> v(n), w(n);
    for (int i = 0; i < n; i++) {
        cin >> v[i] >> w[i];
    }
    
    int ans = -1;
    for (int i = 0; i < n; i++) {
        if (w[i] <= W) ans = max(ans, v[i]);
    }
    
    cout << ans << endl;
    return 0;
}
            
            
            
        