結果

問題 No.2487 Multiple of M
ユーザー i_am_noob
提出日時 2023-10-28 21:44:26
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 936 bytes
コンパイル時間 1,914 ms
コンパイル使用メモリ 194,544 KB
最終ジャッジ日時 2025-02-17 16:43:09
ジャッジサーバーID
(参考情報)
judge4 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 53
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define all(a) a.begin(),a.end()
#define pb push_back
#define sz(a) ((int)a.size())

const int mod=998244353;
int add(int x, int y){x+=y; if(x>=mod) x-=mod; return x;}
int sub(int x, int y){x-=y; if(x<0) x+=mod; return x;}
int mul(int x, int y){return ((ll)x)*y%mod;}
int Pow(int x, ll y=mod-2){int res=1; for(; y; x=mul(x,x),y>>=1) if(y&1) res=mul(res,x); return res;}

int m,k;

int f(int r, int n){
    return mul(sub(1,Pow(r,n)),Pow(sub(1,r)));
}

int solve(int n, int cur){
    if(n==0) return 1;
    int g=__gcd(cur,m),g2=__gcd(1ll*cur*k,(ll)m);
    if(g!=g2) return sub(mul(g,Pow(m-1,n-1)),solve(n-1,1ll*cur*k%m));
    int res=sub(mul(g,f(sub(0,m-1),n)),1);
    if(n%2==0) res=sub(0,res);
    return res;
}

signed main(){
    ios_base::sync_with_stdio(0),cin.tie(0);
    int n; cin >> n >> m >> k; k%=m;
    cout << solve(n,1) << "\n";
}
0