結果

問題 No.1200 お菓子配り-3
ユーザー StrorkisStrorkis
提出日時 2020-08-29 16:45:46
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 1,112 ms / 4,000 ms
コード長 1,549 bytes
コンパイル時間 13,211 ms
コンパイル使用メモリ 379,644 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-20 23:01:10
合計ジャッジ時間 22,103 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 8 ms
5,248 KB
testcase_08 AC 9 ms
5,248 KB
testcase_09 AC 8 ms
5,248 KB
testcase_10 AC 8 ms
5,248 KB
testcase_11 AC 8 ms
5,248 KB
testcase_12 AC 68 ms
5,248 KB
testcase_13 AC 67 ms
5,248 KB
testcase_14 AC 69 ms
5,248 KB
testcase_15 AC 68 ms
5,248 KB
testcase_16 AC 67 ms
5,248 KB
testcase_17 AC 246 ms
5,248 KB
testcase_18 AC 354 ms
5,248 KB
testcase_19 AC 81 ms
5,248 KB
testcase_20 AC 677 ms
5,248 KB
testcase_21 AC 686 ms
5,248 KB
testcase_22 AC 830 ms
5,248 KB
testcase_23 AC 674 ms
5,248 KB
testcase_24 AC 684 ms
5,248 KB
testcase_25 AC 677 ms
5,248 KB
testcase_26 AC 678 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 1,112 ms
5,248 KB
testcase_29 AC 818 ms
5,248 KB
testcase_30 AC 812 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Write;

fn read_line() -> String {
    let mut buf = String::new();
    std::io::stdin().read_line(&mut buf).unwrap();
    buf
}

fn read_u() -> usize {
    let buf = read_line();
    buf.trim_end().parse().unwrap()
}

fn read_i2t() -> (i32, i32) {
    let buf = read_line();
    let mut iter = buf.split_whitespace();
    (
        iter.next().unwrap().parse().unwrap(),
        iter.next().unwrap().parse().unwrap(),
    )
}

fn main () {
    let stdout = std::io::stdout();
    let mut writer = std::io::BufWriter::new(stdout.lock());

    let s: usize = read_u();

    let get_divisors = |n: i32| -> Vec<i32> {
        let mut divisors = vec![];
        for p in 1.. {
            if p * p > n { break; }
            if n % p > 0 { continue; }
            divisors.push(p);
            if p * p == n { continue; }
            divisors.push(n / p);
        }
        divisors
    };

    for _ in 0..s {
        let (x, y): (i32, i32) = read_i2t();

        let p = x + y;
        let q = (x - y).abs();

        let mut ans = 0;
        let divisors = get_divisors(p);
        for &i in &divisors {
            if i == 1 { continue; }
            let j = p / i;
            if i == 2 {
                if q > 0 { continue; }
                ans += j - 1;
            } else if q % (i - 2) == 0 {
                let u = j;
                let v = q / (i - 2);
                if u > v && (u + v) % 2 == 0 {
                    ans += 1;
                }
            }
        }
        writeln!(writer, "{}", ans).unwrap();
    }
}
0