結果

問題 No.1113 二つの整数 / Two Integers
ユーザー fukafukatanifukafukatani
提出日時 2020-07-17 22:14:50
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 651 bytes
コンパイル時間 1,188 ms
コンパイル使用メモリ 144,332 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-20 01:38:39
合計ジャッジ時間 2,058 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
4,376 KB
testcase_01 AC 0 ms
4,376 KB
testcase_02 AC 3 ms
4,380 KB
testcase_03 AC 3 ms
4,376 KB
testcase_04 WA -
testcase_05 AC 3 ms
4,380 KB
testcase_06 AC 0 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 3 ms
4,380 KB
testcase_09 WA -
testcase_10 AC 3 ms
4,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 4 ms
4,380 KB
testcase_15 AC 3 ms
4,380 KB
testcase_16 AC 3 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn gcd(a: i128, b: i128) -> i128 {
    if b == 0 {
        return a;
    }
    gcd(b, a % b)
}

fn main() {
    let v = read_vec::<i128>();
    let (a, b) = (v[0], v[1]);
    let g = gcd(a, b);
    for i in 1..1000001 {
        if g == i * i * i {
            println!("Odd");
            return;
        }
    }
    println!("Even");
}

fn read<T: std::str::FromStr>() -> T {
    let mut s = String::new();
    std::io::stdin().read_line(&mut s).ok();
    s.trim().parse().ok().unwrap()
}

fn read_vec<T: std::str::FromStr>() -> Vec<T> {
    read::<String>()
        .split_whitespace()
        .map(|e| e.parse().ok().unwrap())
        .collect()
}
0