結果

問題 No.1532 Different Products
ユーザー koba-e964koba-e964
提出日時 2021-10-15 08:39:22
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 2,185 ms / 4,000 ms
コード長 1,697 bytes
コンパイル時間 13,613 ms
コンパイル使用メモリ 380,240 KB
実行使用メモリ 309,400 KB
最終ジャッジ日時 2024-09-17 16:43:28
合計ジャッジ時間 82,114 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 237 ms
40,588 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 63 ms
21,388 KB
testcase_10 AC 349 ms
78,996 KB
testcase_11 AC 236 ms
40,468 KB
testcase_12 AC 978 ms
155,664 KB
testcase_13 AC 418 ms
78,992 KB
testcase_14 AC 1,758 ms
309,256 KB
testcase_15 AC 7 ms
6,940 KB
testcase_16 AC 351 ms
79,128 KB
testcase_17 AC 228 ms
40,596 KB
testcase_18 AC 156 ms
40,596 KB
testcase_19 AC 929 ms
155,788 KB
testcase_20 AC 1,694 ms
309,268 KB
testcase_21 AC 442 ms
78,880 KB
testcase_22 AC 470 ms
78,992 KB
testcase_23 AC 191 ms
40,464 KB
testcase_24 AC 1,452 ms
155,796 KB
testcase_25 AC 815 ms
155,672 KB
testcase_26 AC 72 ms
21,192 KB
testcase_27 AC 618 ms
78,876 KB
testcase_28 AC 480 ms
78,872 KB
testcase_29 AC 469 ms
78,880 KB
testcase_30 AC 958 ms
155,680 KB
testcase_31 AC 953 ms
155,676 KB
testcase_32 AC 1,134 ms
155,680 KB
testcase_33 AC 861 ms
155,800 KB
testcase_34 AC 1,338 ms
155,796 KB
testcase_35 AC 1,104 ms
155,672 KB
testcase_36 AC 1,300 ms
155,676 KB
testcase_37 AC 286 ms
78,880 KB
testcase_38 AC 1,392 ms
155,672 KB
testcase_39 AC 1,211 ms
155,672 KB
testcase_40 AC 1,249 ms
155,796 KB
testcase_41 AC 2,138 ms
309,264 KB
testcase_42 AC 1,895 ms
309,272 KB
testcase_43 AC 1,906 ms
309,396 KB
testcase_44 AC 2,045 ms
309,392 KB
testcase_45 AC 1,965 ms
309,400 KB
testcase_46 AC 1,900 ms
309,264 KB
testcase_47 AC 2,090 ms
309,276 KB
testcase_48 AC 2,094 ms
309,380 KB
testcase_49 AC 2,125 ms
309,276 KB
testcase_50 AC 2,101 ms
309,264 KB
testcase_51 AC 2,164 ms
309,276 KB
testcase_52 AC 2,030 ms
309,264 KB
testcase_53 AC 2,040 ms
309,400 KB
testcase_54 AC 2,185 ms
309,392 KB
testcase_55 AC 2,169 ms
309,392 KB
testcase_56 AC 1,997 ms
309,400 KB
testcase_57 AC 1,976 ms
309,268 KB
testcase_58 AC 2,082 ms
309,400 KB
testcase_59 AC 1,912 ms
309,256 KB
testcase_60 AC 2,056 ms
309,392 KB
testcase_61 AC 1 ms
5,376 KB
testcase_62 AC 1 ms
5,376 KB
testcase_63 AC 2,073 ms
309,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#[allow(unused_imports)]
use std::cmp::*;
#[allow(unused_imports)]
use std::collections::*;
use std::io::Read;

#[allow(dead_code)]
fn getline() -> String {
    let mut ret = String::new();
    std::io::stdin().read_line(&mut ret).ok().unwrap();
    ret
}

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 solve() {
    let n: i64 = get();
    let k: i64 = get();
    let mut memo = HashMap::new();
    println!("{}", dfs(n, k, &mut memo));
}

fn main() {
    // In order to avoid potential stack overflow, spawn a new thread.
    let stack_size = 104_857_600; // 100 MB
    let thd = std::thread::Builder::new().stack_size(stack_size);
    thd.spawn(|| solve()).unwrap().join().unwrap();
}
0