結果

問題 No.617 Nafmo、買い出しに行く
ユーザー phsplsphspls
提出日時 2020-02-21 21:05:05
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 812 bytes
コンパイル時間 12,850 ms
コンパイル使用メモリ 389,608 KB
実行使用メモリ 42,880 KB
最終ジャッジ日時 2024-10-08 20:05:41
合計ジャッジ時間 15,019 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 19 ms
6,144 KB
testcase_03 AC 51 ms
13,056 KB
testcase_04 AC 5 ms
5,248 KB
testcase_05 AC 89 ms
21,760 KB
testcase_06 AC 185 ms
42,880 KB
testcase_07 AC 185 ms
42,880 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 133 ms
31,104 KB
testcase_11 AC 161 ms
37,248 KB
testcase_12 AC 86 ms
20,864 KB
testcase_13 AC 51 ms
13,056 KB
testcase_14 AC 68 ms
16,640 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 1 ms
5,248 KB
testcase_21 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut nk = String::new();
    std::io::stdin().read_line(&mut nk).ok();
    let nk: Vec<usize> = nk.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nk[0];
    let k = nk[1];
    let mut a: Vec<usize> = vec![];
    for _ in 0..n {
        let mut aa = String::new();
        std::io::stdin().read_line(&mut aa).ok();
        let aa: usize = aa.trim().parse().unwrap();
        a.push(aa);
    }

    let mut dp: Vec<Vec<bool>> = vec![vec![false; k+1]; n+1];
    dp[0][0] = true;
    for i in 0..n {
        for j in 0..=k {
            dp[i+1][j] |= dp[i][j];
            if a[i] <= j {
                dp[i+1][j] |= dp[i][j-a[i]];
            }
        }
    }
    println!("{}", dp[n].iter().enumerate().filter(|pair| *pair.1).map(|pair| pair.0).max().unwrap());
}
0