結果

問題 No.2818 A Game I Play to Pass the Time
ユーザー kotatsugamekotatsugame
提出日時 2024-07-19 23:56:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,485 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 639 ms
コンパイル使用メモリ 67,456 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 23:57:10
合計ジャッジ時間 31,252 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1,402 ms
5,376 KB
testcase_02 AC 1,381 ms
5,376 KB
testcase_03 AC 1,384 ms
5,376 KB
testcase_04 AC 1,419 ms
5,376 KB
testcase_05 AC 1,355 ms
5,376 KB
testcase_06 AC 1,398 ms
5,376 KB
testcase_07 AC 1,459 ms
5,376 KB
testcase_08 AC 1,380 ms
5,376 KB
testcase_09 AC 1,376 ms
5,376 KB
testcase_10 AC 1,418 ms
5,376 KB
testcase_11 AC 1,415 ms
5,376 KB
testcase_12 AC 1,444 ms
5,376 KB
testcase_13 AC 1,431 ms
5,376 KB
testcase_14 AC 1,415 ms
5,376 KB
testcase_15 AC 1,485 ms
5,376 KB
testcase_16 AC 1,394 ms
5,376 KB
testcase_17 AC 1,409 ms
5,376 KB
testcase_18 AC 1,402 ms
5,376 KB
testcase_19 AC 1,404 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cassert>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
mint H(long a,int b)
{
	//H(a,b)=C(a+b-1,b)
	mint x=1,y=1;
	for(int i=1;i<=b;i++)x*=a+b-i,y*=i;
	return x/y;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int T;cin>>T;
	for(;T--;)
	{
		long N,S;
		cin>>N>>S;
		mint ans=S;
		for(int p=2;p<=100;p++)if(N%p==0)
		{
			int e=0;
			while(N%p==0)N/=p,e++;
			mint now=0,pp=1;
			for(int f=0;f<=e;f++)
			{
				now+=H(S-1,e-f)*pp;
				pp*=p;
			}
			ans*=now;
		}
		cout<<ans.val()<<"\n";
	}
}
0