結果

問題 No.2811 Calculation Within Sequence
ユーザー naut3naut3
提出日時 2024-11-11 17:07:09
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 1,293 bytes
コンパイル時間 24,248 ms
コンパイル使用メモリ 378,652 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-11-11 17:07:40
合計ジャッジ時間 24,981 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 24 ms
8,832 KB
testcase_04 AC 24 ms
8,960 KB
testcase_05 AC 25 ms
9,088 KB
testcase_06 AC 25 ms
8,960 KB
testcase_07 AC 24 ms
8,960 KB
testcase_08 AC 24 ms
8,960 KB
testcase_09 AC 25 ms
8,960 KB
testcase_10 AC 25 ms
8,960 KB
testcase_11 AC 24 ms
8,960 KB
testcase_12 AC 25 ms
8,960 KB
testcase_13 AC 25 ms
8,960 KB
testcase_14 AC 25 ms
8,832 KB
testcase_15 AC 24 ms
8,960 KB
testcase_16 AC 24 ms
8,960 KB
testcase_17 AC 24 ms
8,960 KB
testcase_18 AC 23 ms
8,960 KB
testcase_19 AC 23 ms
8,960 KB
testcase_20 AC 24 ms
8,960 KB
testcase_21 AC 25 ms
8,960 KB
testcase_22 AC 23 ms
9,088 KB
testcase_23 AC 26 ms
9,344 KB
testcase_24 AC 14 ms
5,888 KB
testcase_25 AC 5 ms
5,248 KB
testcase_26 AC 6 ms
5,248 KB
testcase_27 AC 15 ms
6,400 KB
testcase_28 AC 3 ms
5,248 KB
testcase_29 AC 12 ms
5,248 KB
testcase_30 AC 12 ms
5,376 KB
testcase_31 AC 12 ms
5,248 KB
testcase_32 AC 4 ms
5,248 KB
testcase_33 AC 11 ms
5,248 KB
testcase_34 AC 14 ms
5,888 KB
testcase_35 AC 7 ms
5,248 KB
testcase_36 AC 12 ms
5,376 KB
testcase_37 AC 9 ms
5,248 KB
testcase_38 AC 9 ms
5,248 KB
testcase_39 AC 10 ms
5,248 KB
testcase_40 AC 14 ms
5,504 KB
testcase_41 AC 16 ms
6,144 KB
testcase_42 AC 7 ms
5,248 KB
testcase_43 AC 10 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(non_snake_case, unused_must_use, unused_imports)]
use std::io::{self, prelude::*};

fn main() {
    let (stdin, stdout) = (io::read_to_string(io::stdin()).unwrap(), io::stdout());
    let (mut stdin, mut buffer) = (stdin.split_whitespace(), io::BufWriter::new(stdout.lock()));

    macro_rules! input {
        ($t: tt, $n: expr) => {
            (0..$n).map(|_| input!($t)).collect::<Vec<_>>()
        };
        (Chars) => {
            input! {String}.chars().collect::<Vec<_>>()
        };
        (Usize1) => {
            stdin.next().unwrap().parse::<usize>().unwrap() - 1
        };
        ($t: ty) => {
            stdin.next().unwrap().parse::<$t>().unwrap()
        };
    }

    let a = input!(usize);
    let b = input!(usize);
    let T = input!(usize, a);
    let S = input!(usize, b);

    let mut g = T[0];

    for i in 1..a {
        g = gcd(g, T[i]);
    }

    let mut isok = true;

    for i in 0..(std::cmp::min(a, b)) {
        if T[i].abs_diff(S[i]) % g != 0 {
            isok = false;
            break;
        }
    }

    writeln!(buffer, "{}", if isok { "Yes" } else { "No" });
}

fn gcd(a: usize, b: usize) -> usize {
    if a < b {
        return gcd(b, a);
    }

    if b == 0 {
        return a;
    } else {
        return gcd(b, a % b);
    }
}
0