結果

問題 No.1836 Max Matrix
ユーザー publfl2publfl2
提出日時 2022-02-11 21:48:58
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 517 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 32,896 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-27 18:01:11
合計ジャッジ時間 1,437 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#define MOD 998244353

long long int power(long long int a, long long int b)
{
	long long int ans = 1;
	long long int k = a;
	while(b)
	{
		if(b%2==1) ans*=k, ans%=MOD;
		k*=k, k%=MOD;
		b/=2;
	}
	return ans;
}
int main()
{
	int a,b,c;
	scanf("%d%d%d",&a,&b,&c);
	
	long long int ans = 0;
	for(int i=1;i<=c;i++)
	{
		long long int s = power(c-i+1,a)-power(c-i,a)+MOD;
		long long int t = power(c-i+1,b)-power(c-i,b)+MOD;
		s%=MOD, t%=MOD;
		ans += (s*t)%MOD;
		ans %= MOD;
	}
	printf("%lld",ans);
}
0