結果

問題 No.2075 GCD Subsequence
ユーザー koba-e964koba-e964
提出日時 2023-08-01 02:16:15
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 567 ms / 4,000 ms
コード長 2,459 bytes
コンパイル時間 12,358 ms
コンパイル使用メモリ 402,844 KB
実行使用メモリ 82,944 KB
最終ジャッジ日時 2024-10-10 18:41:44
合計ジャッジ時間 27,620 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
77,448 KB
testcase_01 AC 327 ms
77,464 KB
testcase_02 AC 319 ms
77,524 KB
testcase_03 AC 329 ms
77,448 KB
testcase_04 AC 332 ms
77,548 KB
testcase_05 AC 315 ms
77,552 KB
testcase_06 AC 321 ms
77,596 KB
testcase_07 AC 318 ms
77,472 KB
testcase_08 AC 431 ms
82,300 KB
testcase_09 AC 456 ms
82,944 KB
testcase_10 AC 400 ms
82,396 KB
testcase_11 AC 422 ms
82,732 KB
testcase_12 AC 426 ms
82,504 KB
testcase_13 AC 386 ms
82,304 KB
testcase_14 AC 413 ms
82,708 KB
testcase_15 AC 416 ms
82,316 KB
testcase_16 AC 400 ms
82,472 KB
testcase_17 AC 475 ms
82,904 KB
testcase_18 AC 560 ms
82,612 KB
testcase_19 AC 567 ms
82,728 KB
testcase_20 AC 557 ms
82,792 KB
testcase_21 AC 555 ms
82,772 KB
testcase_22 AC 561 ms
82,708 KB
testcase_23 AC 557 ms
82,744 KB
testcase_24 AC 556 ms
82,748 KB
testcase_25 AC 561 ms
82,696 KB
testcase_26 AC 559 ms
82,740 KB
testcase_27 AC 555 ms
82,708 KB
testcase_28 AC 542 ms
77,528 KB
testcase_29 AC 317 ms
77,464 KB
testcase_30 AC 333 ms
77,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
macro_rules! input {
    ($($r:tt)*) => {
        let stdin = std::io::stdin();
        let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock()));
        let mut next = move || -> String{
            bytes.by_ref().map(|r|r.unwrap() as char)
                .skip_while(|c|c.is_whitespace())
                .take_while(|c|!c.is_whitespace())
                .collect()
        };
        input_inner!{next, $($r)*}
    };
}

macro_rules! input_inner {
    ($next:expr) => {};
    ($next:expr,) => {};
    ($next:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($next, $t);
        input_inner!{$next $($r)*}
    };
}

macro_rules! read_value {
    ($next:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>()
    };
    ($next:expr, $t:ty) => ($next().parse::<$t>().expect("Parse error"));
}

const MOD: i64 = 998_244_353;

// m <= 7 なので 2^m <= 128
fn main() {
    input! {
        n: usize,
        a: [usize; n],
    }
    const W: usize = 1_000_001;
    let mut fac = vec![vec![]; W];
    for i in 2..W {
        if !fac[i].is_empty() {
            continue;
        }
        for j in 1..(W - 1) / i + 1 {
            fac[i * j].push(i);
        }
    }
    let mut dp = vec![0; W];
    for a in a {
        let f = &fac[a];
        let m = f.len();
        let mut tot = 0;
        for bits in 1usize..1 << m {
            let mut prod = 1;
            for i in 0..m {
                if (bits & 1 << i) != 0 {
                    prod *= f[i];
                }
            }
            if bits.count_ones() % 2 == 0 {
                tot = tot + MOD - dp[prod];
            } else {
                tot += dp[prod];
            }
            if tot >= MOD {
                tot -= MOD;
            }
        }
        for bits in 0..1 << m {
            let mut prod = 1;
            for i in 0..m {
                if (bits & 1 << i) != 0 {
                    prod *= f[i];
                }
            }
            dp[prod] = (dp[prod] + tot + 1) % MOD;
        }
    }
    let mut tot = 0;
    for i in (1..W).rev() {
        for j in 2..(W - 1) / i + 1 {
            dp[i] += MOD - dp[i * j];
            if dp[i] >= MOD {
                dp[i] -= MOD;
            }
        }
        tot += dp[i];
        if tot >= MOD {
            tot -= MOD;
        }
    }
    println!("{}", tot);
}
0