結果

問題 No.634 硬貨の枚数1
ユーザー phsplsphspls
提出日時 2022-12-31 16:09:10
言語 Rust
(1.77.0 + proconio)
結果
TLE  
実行時間 -
コード長 914 bytes
コンパイル時間 11,752 ms
コンパイル使用メモリ 378,004 KB
実行使用メモリ 88,704 KB
最終ジャッジ日時 2024-05-04 22:55:03
合計ジャッジ時間 62,106 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 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 0 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 15 ms
7,296 KB
testcase_15 AC 607 ms
74,664 KB
testcase_16 AC 79 ms
26,368 KB
testcase_17 AC 78 ms
28,544 KB
testcase_18 AC 40 ms
17,152 KB
testcase_19 AC 29 ms
18,944 KB
testcase_20 AC 54 ms
27,008 KB
testcase_21 AC 689 ms
83,712 KB
testcase_22 AC 163 ms
47,232 KB
testcase_23 AC 110 ms
28,160 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 0 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 0 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 9 ms
5,376 KB
testcase_35 AC 42 ms
16,512 KB
testcase_36 AC 126 ms
37,376 KB
testcase_37 AC 51 ms
20,224 KB
testcase_38 AC 23 ms
8,704 KB
testcase_39 AC 564 ms
71,764 KB
testcase_40 AC 221 ms
47,872 KB
testcase_41 AC 150 ms
40,084 KB
testcase_42 AC 163 ms
46,080 KB
testcase_43 AC 74 ms
23,936 KB
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 9 ms
6,016 KB
testcase_47 AC 104 ms
38,016 KB
testcase_48 AC 1 ms
5,376 KB
testcase_49 AC 4 ms
5,376 KB
testcase_50 AC 263 ms
62,208 KB
testcase_51 AC 56 ms
10,624 KB
testcase_52 AC 1 ms
5,376 KB
testcase_53 AC 1 ms
5,376 KB
testcase_54 AC 1 ms
5,376 KB
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 TLE -
testcase_66 TLE -
testcase_67 TLE -
testcase_68 TLE -
testcase_69 AC 1,918 ms
87,220 KB
testcase_70 TLE -
testcase_71 TLE -
testcase_72 AC 1,948 ms
85,620 KB
testcase_73 AC 1,977 ms
85,092 KB
testcase_74 AC 1,883 ms
84,508 KB
testcase_75 AC 1,915 ms
84,224 KB
testcase_76 AC 1 ms
5,376 KB
testcase_77 AC 3 ms
5,376 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 deque = VecDeque::new();
    let mut checked = vec![false; n+1];
    checked[n] = true;
    deque.push_back(n);
    let mut cnt = 0usize;
    loop {
        cnt += 1;
        let limit = deque.len();
        for _ in 0..limit {
            let val = deque.pop_front().unwrap();
            for i in 1.. {
                let minus_val = i * (i+1) / 2;
                if minus_val > val { break; }
                if minus_val == val {
                    println!("{}", cnt);
                    return;
                }
                let val = val - minus_val;
                if !checked[val] {
                    deque.push_back(val);
                    checked[val] = true;
                }
            }
        }
    }
}
0