結果

問題 No.634 硬貨の枚数1
ユーザー phsplsphspls
提出日時 2023-01-29 04:22:51
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 628 bytes
コンパイル時間 12,245 ms
コンパイル使用メモリ 400,832 KB
実行使用メモリ 40,908 KB
最終ジャッジ日時 2024-06-29 03:56:08
合計ジャッジ時間 16,427 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,816 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 7 ms
6,944 KB
testcase_15 AC 90 ms
34,836 KB
testcase_16 AC 27 ms
16,084 KB
testcase_17 AC 40 ms
19,668 KB
testcase_18 AC 30 ms
16,052 KB
testcase_19 AC 78 ms
31,376 KB
testcase_20 AC 91 ms
36,640 KB
testcase_21 AC 115 ms
39,164 KB
testcase_22 AC 96 ms
34,272 KB
testcase_23 AC 25 ms
14,704 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 0 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 1 ms
6,944 KB
testcase_32 AC 1 ms
6,944 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 4 ms
6,940 KB
testcase_35 AC 18 ms
12,424 KB
testcase_36 AC 51 ms
24,324 KB
testcase_37 AC 26 ms
17,440 KB
testcase_38 AC 6 ms
6,940 KB
testcase_39 AC 87 ms
33,404 KB
testcase_40 AC 52 ms
23,380 KB
testcase_41 AC 44 ms
21,432 KB
testcase_42 AC 73 ms
31,864 KB
testcase_43 AC 17 ms
14,044 KB
testcase_44 AC 1 ms
6,944 KB
testcase_45 AC 2 ms
6,944 KB
testcase_46 AC 6 ms
6,944 KB
testcase_47 AC 120 ms
40,840 KB
testcase_48 AC 1 ms
6,944 KB
testcase_49 AC 6 ms
6,940 KB
testcase_50 AC 120 ms
40,908 KB
testcase_51 AC 5 ms
6,944 KB
testcase_52 AC 1 ms
6,944 KB
testcase_53 AC 1 ms
6,940 KB
testcase_54 AC 1 ms
6,940 KB
testcase_55 AC 120 ms
40,444 KB
testcase_56 AC 125 ms
40,160 KB
testcase_57 AC 123 ms
39,812 KB
testcase_58 AC 135 ms
39,404 KB
testcase_59 AC 126 ms
39,448 KB
testcase_60 AC 117 ms
38,780 KB
testcase_61 AC 113 ms
39,476 KB
testcase_62 AC 107 ms
38,856 KB
testcase_63 AC 115 ms
39,764 KB
testcase_64 AC 110 ms
39,608 KB
testcase_65 AC 107 ms
38,688 KB
testcase_66 AC 117 ms
40,284 KB
testcase_67 AC 124 ms
39,852 KB
testcase_68 AC 120 ms
39,752 KB
testcase_69 AC 113 ms
39,732 KB
testcase_70 AC 118 ms
39,560 KB
testcase_71 AC 120 ms
39,360 KB
testcase_72 AC 120 ms
39,052 KB
testcase_73 AC 133 ms
38,828 KB
testcase_74 AC 134 ms
38,640 KB
testcase_75 AC 122 ms
38,456 KB
testcase_76 AC 1 ms
6,944 KB
testcase_77 AC 11 ms
9,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::VecDeque;

fn main() {
    let mut n = String::new();
    std::io::stdin().read_line(&mut n).ok();
    let n: usize = n.trim().parse().unwrap();

    let mut dp = vec![3; n+1];
    dp[n] = 0;
    let mut deque = VecDeque::new();
    for i in 1.. {
        let val = i * (i+1) / 2;
        if val > n { break; }
        dp[n - val] = 1;
        deque.push_back(n - val);
    }
    while let Some(v) = deque.pop_front() {
        for i in 1.. {
            let val = i * (i + 1) / 2;
            if val > v { break; }
            dp[v - val] = dp[v - val].min(2);
        }
    }
    println!("{}", dp[0]);
}
0