結果

問題 No.2989 Fibonacci Prize
ユーザー akakimidoriakakimidori
提出日時 2024-12-14 00:56:48
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 2,810 bytes
コンパイル時間 13,404 ms
コンパイル使用メモリ 401,828 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-14 00:57:04
合計ジャッジ時間 15,409 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 4 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 1 ms
6,820 KB
testcase_12 AC 1 ms
6,816 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 1 ms
6,820 KB
testcase_15 AC 1 ms
6,816 KB
testcase_16 AC 1 ms
6,820 KB
testcase_17 AC 1 ms
6,816 KB
testcase_18 AC 1 ms
6,816 KB
testcase_19 AC 1 ms
6,816 KB
testcase_20 AC 1 ms
6,816 KB
testcase_21 AC 1 ms
6,816 KB
testcase_22 AC 1 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 4 ms
6,820 KB
testcase_25 AC 4 ms
6,820 KB
testcase_26 AC 1 ms
6,816 KB
testcase_27 AC 3 ms
6,820 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 1 ms
6,820 KB
testcase_31 AC 1 ms
6,820 KB
testcase_32 AC 1 ms
6,816 KB
testcase_33 AC 5 ms
6,820 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 5 ms
6,816 KB
testcase_37 AC 6 ms
6,816 KB
testcase_38 AC 2 ms
6,816 KB
testcase_39 AC 2 ms
6,816 KB
testcase_40 AC 2 ms
6,816 KB
testcase_41 AC 3 ms
6,820 KB
testcase_42 AC 5 ms
6,816 KB
testcase_43 AC 15 ms
6,816 KB
testcase_44 AC 22 ms
6,820 KB
testcase_45 AC 19 ms
6,820 KB
testcase_46 AC 11 ms
6,816 KB
testcase_47 AC 15 ms
6,816 KB
testcase_48 AC 15 ms
6,816 KB
testcase_49 AC 15 ms
6,820 KB
testcase_50 AC 13 ms
6,820 KB
testcase_51 AC 12 ms
6,820 KB
testcase_52 AC 12 ms
6,820 KB
testcase_53 AC 11 ms
6,820 KB
testcase_54 AC 12 ms
6,816 KB
testcase_55 AC 11 ms
6,820 KB
testcase_56 AC 10 ms
6,816 KB
testcase_57 AC 10 ms
6,816 KB
testcase_58 AC 11 ms
6,824 KB
testcase_59 AC 12 ms
6,820 KB
testcase_60 AC 12 ms
6,820 KB
testcase_61 AC 11 ms
6,816 KB
testcase_62 AC 10 ms
6,816 KB
testcase_63 AC 10 ms
6,820 KB
testcase_64 WA -
testcase_65 AC 1 ms
6,820 KB
testcase_66 AC 1 ms
6,816 KB
testcase_67 AC 1 ms
6,816 KB
testcase_68 AC 1 ms
6,816 KB
testcase_69 AC 1 ms
6,820 KB
testcase_70 AC 1 ms
6,816 KB
testcase_71 AC 1 ms
6,816 KB
testcase_72 AC 1 ms
6,820 KB
testcase_73 AC 1 ms
6,820 KB
testcase_74 AC 1 ms
6,820 KB
testcase_75 AC 1 ms
6,816 KB
testcase_76 AC 0 ms
6,816 KB
testcase_77 AC 1 ms
6,816 KB
testcase_78 AC 1 ms
6,820 KB
testcase_79 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    input! {
        n: usize,
        m: usize,
    }
    if m <= 30 {
        let mut fib = vec![0; 101];
        fib[1] = 1;
        fib[2] = 1;
        for i in 3..=m {
            fib[i] = fib[i - 1] + fib[i - 2];
        }
        let mut ans = 0;
        for l in 1..=m {
            for r in l..=m {
                let s = fib[l..=r].iter().sum::<usize>();
                if s % n == 0 && s <= fib[m] {
                    ans += 1;
                }
            }
        }
        println!("{}", ans);
        return;
    }
    if n == 1 {
        let ans = (m - 1) * (m - 2) / 2 + 3;
        println!("{}", ans);
        return;
    }
    let mut f = (0, 1);
    let mut s = 0;
    let mut dp = vec![0usize; n];
    dp[s] += 1;
    let mut i = 1;
    while i < m - 1 {
        f = (f.1, (f.0 + f.1) % n);
        s = (s + f.0) % n;
        if f == (0, 1) && m >= 3 + i {
            assert!(s == 0);
            let q = (m - 3) / i;
            for dp in dp.iter_mut() {
                *dp *= q;
            }
            i += (q - 1) * i;
        }
        dp[s] += 1;
        i += 1;
    }
    f = (f.1, (f.0 + f.1) % n);
    let mut ans = 0;
    for &v in dp.iter() {
        ans += v * (v - 1) / 2;
    }
    if f.1 == 0 {
        ans += 2;
    }
    if f.0 == 0 {
        ans += 1;
    }
    println!("{}", ans);
}

// ---------- begin input macro ----------
// reference: https://qiita.com/tanakh/items/0ba42c7ca36cd29d0ac8
#[macro_export]
macro_rules! input {
    (source = $s:expr, $($r:tt)*) => {
        let mut iter = $s.split_whitespace();
        input_inner!{iter, $($r)*}
    };
    ($($r:tt)*) => {
        let s = {
            use std::io::Read;
            let mut s = String::new();
            std::io::stdin().read_to_string(&mut s).unwrap();
            s
        };
        let mut iter = s.split_whitespace();
        input_inner!{iter, $($r)*}
    };
}

#[macro_export]
macro_rules! input_inner {
    ($iter:expr) => {};
    ($iter:expr, ) => {};
    ($iter:expr, $var:ident : $t:tt $($r:tt)*) => {
        let $var = read_value!($iter, $t);
        input_inner!{$iter $($r)*}
    };
}

#[macro_export]
macro_rules! read_value {
    ($iter:expr, ( $($t:tt),* )) => {
        ( $(read_value!($iter, $t)),* )
    };
    ($iter:expr, [ $t:tt ; $len:expr ]) => {
        (0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>()
    };
    ($iter:expr, chars) => {
        read_value!($iter, String).chars().collect::<Vec<char>>()
    };
    ($iter:expr, bytes) => {
        read_value!($iter, String).bytes().collect::<Vec<u8>>()
    };
    ($iter:expr, usize1) => {
        read_value!($iter, usize) - 1
    };
    ($iter:expr, $t:ty) => {
        $iter.next().unwrap().parse::<$t>().expect("Parse error")
    };
}
// ---------- end input macro ----------
0