結果

問題 No.2846 Birthday Cake
ユーザー 37kt37kt
提出日時 2024-11-27 10:45:25
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 742 bytes
コンパイル時間 18,109 ms
コンパイル使用メモリ 378,580 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-27 10:45:46
合計ジャッジ時間 18,132 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 4 ms
5,248 KB
testcase_02 AC 21 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 22 ms
5,248 KB
testcase_06 AC 22 ms
5,248 KB
testcase_07 AC 24 ms
5,248 KB
testcase_08 AC 26 ms
5,248 KB
testcase_09 AC 26 ms
5,248 KB
testcase_10 AC 26 ms
5,248 KB
testcase_11 AC 29 ms
5,248 KB
testcase_12 AC 19 ms
5,248 KB
testcase_13 AC 23 ms
5,248 KB
testcase_14 AC 11 ms
5,248 KB
testcase_15 AC 17 ms
5,248 KB
testcase_16 AC 19 ms
5,248 KB
testcase_17 AC 28 ms
5,248 KB
testcase_18 AC 31 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 7 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 10 ms
5,248 KB
testcase_23 AC 8 ms
5,248 KB
testcase_24 AC 25 ms
5,248 KB
testcase_25 AC 1 ms
5,248 KB
testcase_26 AC 11 ms
5,248 KB
testcase_27 AC 14 ms
5,248 KB
testcase_28 AC 1 ms
5,248 KB
testcase_29 AC 17 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 8 ms
5,248 KB
testcase_32 AC 21 ms
5,248 KB
testcase_33 AC 25 ms
5,248 KB
testcase_34 AC 16 ms
5,248 KB
testcase_35 AC 18 ms
5,248 KB
testcase_36 AC 25 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use proconio::{
    input,
    marker::{Bytes, Chars, Usize1},
};

const M: usize = 55440;

fn main() {
    input! {
        k: usize,
        n: usize,
    }
    let mut res = 0usize;
    let a = [13, 17, 19, 23];
    for &x in &a {
        if x <= n && x == k {
            res += 1;
        }
    }
    let mut b = vec![];
    for i in 1..=n {
        if a.iter().all(|&x| i != x) {
            b.push(M / i);
        }
    }
    let mut dp = vec![0; M + 1];
    dp[0] = 1;
    for _ in 0..k {
        let mut ndp = vec![0; M + 1];
        for &x in &b {
            for i in x..=M {
                ndp[i] += dp[i - x];
            }
        }
        dp = ndp;
    }
    res += dp[M];
    println!("{}", res);
}
0