結果

問題 No.1036 Make One With GCD 2
ユーザー akakimidoriakakimidori
提出日時 2020-04-24 21:44:30
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 676 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 25,942 ms
コンパイル使用メモリ 385,200 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-09-16 13:13:11
合計ジャッジ時間 34,325 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
10,728 KB
testcase_01 AC 59 ms
7,040 KB
testcase_02 AC 66 ms
11,648 KB
testcase_03 AC 7 ms
5,376 KB
testcase_04 AC 10 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 20 ms
5,376 KB
testcase_08 AC 16 ms
5,376 KB
testcase_09 AC 143 ms
6,656 KB
testcase_10 AC 134 ms
6,272 KB
testcase_11 AC 147 ms
6,784 KB
testcase_12 AC 135 ms
6,528 KB
testcase_13 AC 294 ms
10,760 KB
testcase_14 AC 296 ms
10,752 KB
testcase_15 AC 277 ms
10,200 KB
testcase_16 AC 280 ms
10,280 KB
testcase_17 AC 289 ms
10,496 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 274 ms
10,224 KB
testcase_23 AC 203 ms
8,064 KB
testcase_24 AC 286 ms
10,496 KB
testcase_25 AC 260 ms
9,748 KB
testcase_26 AC 269 ms
9,984 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 1 ms
5,376 KB
testcase_35 AC 1 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 676 ms
11,264 KB
testcase_39 AC 74 ms
11,264 KB
testcase_40 AC 201 ms
8,064 KB
testcase_41 AC 82 ms
11,136 KB
testcase_42 AC 83 ms
11,136 KB
testcase_43 AC 81 ms
11,136 KB
testcase_44 AC 82 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::io::Read;

fn gcd(a: u64, b: u64) -> u64 {
    if b == 0 {
        a
    } else {
        gcd(b, a % b)
    }
}

fn run() {
    let mut s = String::new();
    std::io::stdin().read_to_string(&mut s).unwrap();
    let mut it = s.trim().split_whitespace();
    it.next();
    let mut ans = 0;
    let mut stack = vec![];
    for s in it {
        let a: u64 = s.parse().unwrap();
        stack.push((a, 1u64));
        for p in stack.iter_mut() {
            p.0 = gcd(p.0, a);
        }
        stack.dedup_by(|a, b| {
            let cond = a.0 == b.0;
            if cond {
                b.1 += a.1;
            }
            cond
        });
        if stack[0].0 == 1 {
            ans += stack[0].1;
        }
    }
    println!("{}", ans);
}

fn main() {
    run();
}
0