結果

問題 No.46 はじめのn歩
ユーザー inoino
提出日時 2022-08-07 22:09:24
言語 Rust
(1.77.0 + proconio)
結果
TLE  
実行時間 -
コード長 468 bytes
コンパイル時間 17,016 ms
コンパイル使用メモリ 378,448 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-09-17 14:16:11
合計ジャッジ時間 19,387 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;

fn main() {
    input! {
       a:i32,
       b:i32
    }

    let rem = b % a;

    if rem == 0 {
        // 割り切れた場合は最短
        let min_step = b / a;
        println!("{}", min_step);
    } else {
        let mut c = 1;
        loop {
            let aaa = a * c;
            let r = b % aaa;
            if r > 1 {
                println!("{}", c);
                break;
            }
            c += 1;
        }
    }
}
0