結果

問題 No.1532 Different Products
ユーザー koba-e964koba-e964
提出日時 2021-10-15 08:41:17
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 1,501 ms / 4,000 ms
コード長 1,236 bytes
コンパイル時間 10,481 ms
コンパイル使用メモリ 400,864 KB
実行使用メモリ 309,264 KB
最終ジャッジ日時 2024-09-17 16:45:04
合計ジャッジ時間 57,086 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 176 ms
40,456 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 0 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 51 ms
21,232 KB
testcase_10 AC 246 ms
78,832 KB
testcase_11 AC 157 ms
40,424 KB
testcase_12 AC 661 ms
155,556 KB
testcase_13 AC 285 ms
78,796 KB
testcase_14 AC 1,234 ms
309,260 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 242 ms
78,752 KB
testcase_17 AC 155 ms
40,368 KB
testcase_18 AC 106 ms
40,452 KB
testcase_19 AC 655 ms
155,744 KB
testcase_20 AC 1,252 ms
309,188 KB
testcase_21 AC 336 ms
78,836 KB
testcase_22 AC 331 ms
78,816 KB
testcase_23 AC 141 ms
40,376 KB
testcase_24 AC 974 ms
155,644 KB
testcase_25 AC 561 ms
155,584 KB
testcase_26 AC 51 ms
21,128 KB
testcase_27 AC 412 ms
78,860 KB
testcase_28 AC 313 ms
78,856 KB
testcase_29 AC 301 ms
78,840 KB
testcase_30 AC 619 ms
155,572 KB
testcase_31 AC 641 ms
155,588 KB
testcase_32 AC 721 ms
155,676 KB
testcase_33 AC 554 ms
155,576 KB
testcase_34 AC 880 ms
155,644 KB
testcase_35 AC 717 ms
155,728 KB
testcase_36 AC 876 ms
155,732 KB
testcase_37 AC 233 ms
78,872 KB
testcase_38 AC 931 ms
155,612 KB
testcase_39 AC 801 ms
155,588 KB
testcase_40 AC 830 ms
155,652 KB
testcase_41 AC 1,402 ms
309,196 KB
testcase_42 AC 1,262 ms
309,180 KB
testcase_43 AC 1,268 ms
309,232 KB
testcase_44 AC 1,356 ms
309,160 KB
testcase_45 AC 1,355 ms
309,180 KB
testcase_46 AC 1,371 ms
309,160 KB
testcase_47 AC 1,379 ms
309,160 KB
testcase_48 AC 1,501 ms
309,172 KB
testcase_49 AC 1,379 ms
309,144 KB
testcase_50 AC 1,374 ms
309,180 KB
testcase_51 AC 1,377 ms
309,252 KB
testcase_52 AC 1,359 ms
309,160 KB
testcase_53 AC 1,389 ms
309,256 KB
testcase_54 AC 1,404 ms
309,144 KB
testcase_55 AC 1,388 ms
309,148 KB
testcase_56 AC 1,326 ms
309,264 KB
testcase_57 AC 1,339 ms
309,148 KB
testcase_58 AC 1,367 ms
309,152 KB
testcase_59 AC 1,313 ms
309,116 KB
testcase_60 AC 1,412 ms
309,232 KB
testcase_61 AC 1 ms
5,376 KB
testcase_62 AC 1 ms
5,376 KB
testcase_63 AC 1,399 ms
309,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::*;
use std::io::Read;

fn get_word() -> String {
    let stdin = std::io::stdin();
    let mut stdin=stdin.lock();
    let mut u8b: [u8; 1] = [0];
    loop {
        let mut buf: Vec<u8> = Vec::with_capacity(16);
        loop {
            let res = stdin.read(&mut u8b);
            if res.unwrap_or(0) == 0 || u8b[0] <= b' ' {
                break;
            } else {
                buf.push(u8b[0]);
            }
        }
        if buf.len() >= 1 {
            let ret = String::from_utf8(buf).unwrap();
            return ret;
        }
    }
}

#[allow(dead_code)]
fn get<T: std::str::FromStr>() -> T { get_word().parse().ok().unwrap() }

fn dfs(n: i64, k: i64, memo: &mut HashMap<(i64, i64), u64>) -> u64 {
    if let Some(&val) = memo.get(&(n, k)) {
        return val;
    }
    if k <= 0 {
        return 0;
    }
    if n <= 0 {
        return 0;
    }
    let mut sum = if k >= n {
        1
    } else {
        0
    };
    if k >= n {
        sum += dfs(n - 1, k / n, memo);
    }
    sum += dfs(n - 1, k, memo);
    memo.insert((n, k), sum);
    sum
}

fn main() {
    let n: i64 = get();
    let k: i64 = get();
    let mut memo = HashMap::new();
    println!("{}", dfs(n, k, &mut memo));
}
0