結果

問題 No.2413 Multiple of 99
ユーザー 👑 kmjpkmjp
提出日時 2023-08-12 00:00:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,298 ms / 8,000 ms
コード長 2,712 bytes
コンパイル時間 2,420 ms
コンパイル使用メモリ 211,532 KB
実行使用メモリ 51,428 KB
最終ジャッジ日時 2024-04-29 15:16:54
合計ジャッジ時間 28,847 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 16 ms
5,376 KB
testcase_05 AC 54 ms
5,376 KB
testcase_06 AC 34 ms
5,376 KB
testcase_07 AC 2,291 ms
51,428 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2,297 ms
51,308 KB
testcase_10 AC 2,289 ms
51,304 KB
testcase_11 AC 2,281 ms
50,312 KB
testcase_12 AC 2,295 ms
51,304 KB
testcase_13 AC 2,298 ms
51,304 KB
testcase_14 AC 2,291 ms
51,300 KB
testcase_15 AC 2,287 ms
51,428 KB
testcase_16 AC 1,074 ms
27,240 KB
testcase_17 AC 1,044 ms
26,280 KB
testcase_18 AC 2,236 ms
44,680 KB
testcase_19 AC 117 ms
6,200 KB
testcase_20 AC 53 ms
5,376 KB
testcase_21 AC 114 ms
6,120 KB
testcase_22 AC 2,229 ms
44,792 KB
testcase_23 AC 240 ms
8,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N,K;

const int mo=998244353;
ll modpow(ll a, ll n = mo-2) {
	ll r=1; a%=mo;
	while(n) r=r*((n%2)?a:1)%mo,a=a*a%mo,n>>=1;
	return r;
}

template <class T> using vec=vector<T>; //using vec=valarray<T>;

template<class T> vec<T> fft(vec<T> v, bool rev=false) {
	int n=v.size(),i,j,m;
	for(int m=n; m>=2; m/=2) {
		T wn=modpow(5,(mo-1)/m);
		if(rev) wn=modpow(wn);
		for(i=0;i<n;i+=m) {
			T w=1;
			for(int j1=i,j2=i+m/2;j2<i+m;j1++,j2++) {
				T t1=v[j1],t2=v[j2];
				v[j1]=t1+t2;
				v[j2]=ll(t1+mo-t2)*w%mo;
				while(v[j1]>=mo) v[j1]-=mo;
				w=(ll)w*wn%mo;
			}
		}
	}
	for(i=0,j=1;j<n-1;j++) {
		for(int k=n>>1;k>(i^=k);k>>=1);
		if(i>j) swap(v[i],v[j]);
	}
	if(rev) {
		ll rv = modpow(n);
		FOR(i,n) v[i]=(ll)v[i]*rv%mo;
	}
	return v;
}

template<class T> vec<T> MultPoly(vec<T> P,vec<T> Q,bool resize=false) {
	if(resize) {
		int maxind=0,pi=0,qi=0,i;
		int s=2;
		FOR(i,P.size()) if(norm(P[i])) pi=i;
		FOR(i,Q.size()) if(norm(Q[i])) qi=i;
		maxind=pi+qi+1;
		while(s*2<maxind) s*=2;
		
		if(s<=16) { //fastpath
			vec<T> R(s*2);
			for(int x=0;x<=pi;x++) for(int y=0;y<=qi;y++) (R[x+y]+=P[x]*Q[y])%=mo;
			return R;
		}
		vec<T> P2(s*2),Q2(s*2);
		FOR(i,pi+1) P2[i]=P[i];
		FOR(i,qi+1) Q2[i]=Q[i];
		swap(P,P2),swap(Q,Q2);
	}
	P=fft(P), Q=fft(Q);
	for(int i=0;i<P.size();i++) P[i]=(ll)P[i]*Q[i]%mo;
	return fft(P,true);
}

template<class T> vec<T> pow(int N,vec<T> C) {
	vec<T> R={1};
	while(N) {
		if(N%2) R=MultPoly(R,C,1);
		C=MultPoly(C,C,1);
		N/=2;
	}
	return R;
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>K;
	vector<ll> A={1,1,1,1,1,1,1,1,1,1};
	vector<ll> B=pow(N/2,A);
	vector<ll> C=pow(N-N/2,A);
	vector<ll> D[11],E[11];
	FOR(i,B.size()) D[i%11].push_back(B[i]);
	FOR(i,C.size()) E[i%11].push_back(C[i]);
	ll ret=0;
	FOR(i,11) {
		vector<ll> F=MultPoly(D[i],E[i],1);
		FOR(x,F.size()) {
			y=i*2+11*x;
			if(y%9==0) ret+=F[x]*modpow(y,K)%mo;
		}
	}
	cout<<ret%mo<<endl;
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0