結果

問題 No.2989 Fibonacci Prize
ユーザー 👑 potato167potato167
提出日時 2024-12-14 00:05:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 603 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 202,800 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-14 00:05:39
合計ジャッジ時間 9,538 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++)
#define all(p) (p).begin(),(p).end()

ll solve3(ll N, ll M){
    assert(M <= 60);
    vector<ll> f(M + 5);
    f[0] = 1, f[1] = 1;
    for (int i = 2; i <= M + 4; i++){
        f[i] = f[i - 1] + f[i - 2];
    }
    ll ans = 0;
    rep(l, 0, M + 2) rep(r, l + 1, M + 5){
        ll sum = 0;
        rep(k, l, r) sum += f[k];
        if (sum <= f[M - 1] && sum % N == 0) ans++;
    }
    return ans;
}


int main(){
    int N, M;
    cin >> N >> M;
    cout << solve3(N, M) << "\n";
}
0