結果

問題 No.2793 Mancala Master
ユーザー kotatsugamekotatsugame
提出日時 2024-06-28 20:59:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 783 ms
コンパイル使用メモリ 68,472 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 20:59:03
合計ジャッジ時間 2,803 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 14 ms
5,376 KB
testcase_04 AC 6 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 17 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 10 ms
5,376 KB
testcase_09 AC 11 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 27 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 30 ms
5,376 KB
testcase_14 AC 13 ms
5,376 KB
testcase_15 AC 11 ms
5,376 KB
testcase_16 AC 64 ms
5,376 KB
testcase_17 AC 62 ms
5,376 KB
testcase_18 AC 37 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cassert>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int T;cin>>T;
	for(;T--;)
	{
		int N,KK;
		cin>>N>>KK;
		mint K=KK;
		long sum=0;
		for(int i=1;i<=N;i++)
		{
			int A;cin>>A;
			sum+=(long)i*A;
			sum%=998244353-1;
		}
		mint t=1,p=1,k=K.inv();
		for(int i=1;i<=N;i++)
		{
			t*=p;
			p+=k.pow(i);
		}
		cout<<(K.pow(sum)*(1-k).pow(N)*t).val()<<"\n";
	}
}
0