結果
| 問題 | No.2492 Knapsack Problem? | 
| コンテスト | |
| ユーザー |  gemy | 
| 提出日時 | 2023-11-22 22:59:12 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 317 bytes | 
| コンパイル時間 | 1,972 ms | 
| コンパイル使用メモリ | 190,912 KB | 
| 最終ジャッジ日時 | 2025-02-17 23:11:34 | 
| ジャッジサーバーID (参考情報) | judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 9 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
int main() {
    // Input
    int N, W, ans = -1;
    cin >> N >> W;
    rep(i, N) {
        int vi, wi;
        cin >> vi >> wi;
        if (wi <= W) ans = max(ans, vi);
    }
    // Output
    cout << ans << endl;
}
            
            
            
        