結果

問題 No.2989 Fibonacci Prize
ユーザー t98slidert98slider
提出日時 2024-12-14 16:56:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 957 bytes
コンパイル時間 2,516 ms
コンパイル使用メモリ 205,924 KB
実行使用メモリ 10,320 KB
最終ジャッジ日時 2024-12-14 16:56:49
合計ジャッジ時間 4,750 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m, p;
    cin >> n >> m;
    if(m <= 2){
        cout << (n <= 1) + (n <= 2) << '\n';
        return 0;
    }
    if(n == 1){
        ll len = m - 2;
        cout << len * (len + 1) / 2 + 2 << '\n';
        return 0;
    }
    vector<int> a = {1, 1}, cnt(n);
    a.reserve(2 * n);
    do{
        a.emplace_back(a.rbegin()[1] + a.back());
        if(a.back() >= n) a.back() -= n;
    }while(a.rbegin()[1] != 1 || a.back() != 1);
    a.pop_back();
    a.pop_back();
    const int r = a.size(), d = (m - 2) / r, rem = (m - 2) - r * d;
    int sv = 0;
    cnt[0]++;
    for(int i = 0; i < r; i++){
        sv += a[i];
        if(sv >= n) sv -= n;
        cnt[sv] += d;
        if(i < rem) cnt[sv]++;
    }
    ll ans = (a[rem] == 0) * 2;
    for(auto &&v : cnt) ans += (ll)(v) * (v - 1) / 2;
    cout << ans << '\n';

}
0