結果

問題 No.2767 Add to Divide
ユーザー atcoder8atcoder8
提出日時 2024-05-31 22:10:24
言語 Rust
(1.77.0 + proconio)
結果
TLE  
実行時間 -
コード長 507 bytes
コンパイル時間 13,890 ms
コンパイル使用メモリ 383,424 KB
実行使用メモリ 13,636 KB
最終ジャッジ日時 2024-12-20 23:42:37
合計ジャッジ時間 23,807 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 TLE -
testcase_02 AC 1 ms
12,192 KB
testcase_03 AC 1 ms
8,740 KB
testcase_04 AC 1 ms
12,196 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 39 ms
5,248 KB
testcase_12 AC 36 ms
5,248 KB
testcase_13 AC 25 ms
5,248 KB
testcase_14 AC 27 ms
5,248 KB
testcase_15 TLE -
testcase_16 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;

fn main() {
    input! {
        t: usize,
        ab: [(usize, usize); t],
    }

    for &(a, b) in &ab {
        match solve(a, b) {
            Some(min_x) => println!("{}", min_x),
            None => println!("-1"),
        }
    }
}

fn solve(a: usize, b: usize) -> Option<usize> {
    if a == b {
        return Some(0);
    }

    for k in (2..=b / a).rev() {
        if (b - a * k) % (k - 1) == 0 {
            return Some((b - a * k) / (k - 1));
        }
    }

    None
}
0