結果

問題 No.1200 お菓子配り-3
ユーザー StrorkisStrorkis
提出日時 2020-08-29 10:02:14
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 1,403 bytes
コンパイル時間 15,704 ms
コンパイル使用メモリ 377,456 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 23:44:39
合計ジャッジ時間 23,650 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 6 ms
5,248 KB
testcase_08 AC 6 ms
5,248 KB
testcase_09 AC 6 ms
5,248 KB
testcase_10 AC 6 ms
5,248 KB
testcase_11 AC 5 ms
5,248 KB
testcase_12 AC 46 ms
5,248 KB
testcase_13 AC 47 ms
5,248 KB
testcase_14 AC 47 ms
5,248 KB
testcase_15 AC 47 ms
5,248 KB
testcase_16 AC 47 ms
5,248 KB
testcase_17 AC 167 ms
5,248 KB
testcase_18 AC 240 ms
5,248 KB
testcase_19 AC 56 ms
5,248 KB
testcase_20 AC 462 ms
5,248 KB
testcase_21 AC 461 ms
5,248 KB
testcase_22 AC 543 ms
5,248 KB
testcase_23 AC 463 ms
5,248 KB
testcase_24 AC 454 ms
5,248 KB
testcase_25 AC 459 ms
5,248 KB
testcase_26 AC 458 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 363 ms
5,248 KB
testcase_29 AC 1,014 ms
5,248 KB
testcase_30 AC 1,027 ms
5,248 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Write;

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

    let s: usize = {
        let mut buf = String::new();
        std::io::stdin().read_line(&mut buf).unwrap();
        buf.trim_end().parse().unwrap()
    };

    for _ in 0..s {
        let (x, y): (i64, i64) = {
            let mut buf = String::new();
            std::io::stdin().read_line(&mut buf).unwrap();
            let mut iter = buf.split_whitespace();
            (
                iter.next().unwrap().parse().unwrap(),
                iter.next().unwrap().parse().unwrap(),
            )
        };

        let p = x + y;
        let q = (x - y).abs();
        let mut ans = 0;
        let mut i = 1;
        while i * i <= q {
            if q % i > 0 {
                i += 1;
                continue;
            }
            let j = q / i;
            if p % (i + 2) == 0 {
                let u = p / (i + 2);
                let v = j;
                if u > v && (u + v) % 2 == 0 {
                    ans += 1;
                }
            }
            if i != j && p % (j + 2) == 0 {
                let u = p / (j + 2);
                let v = i;
                if u > v && (u + v) % 2 == 0 {
                    ans += 1;
                }
            }
            i += 1;
        }
        writeln!(writer, "{}", ans).unwrap();
    }
}
0