結果

問題 No.2793 Mancala Master
ユーザー kotatsugamekotatsugame
提出日時 2024-06-24 20:07:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 470 bytes
コンパイル時間 643 ms
コンパイル使用メモリ 67,584 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-25 10:45:23
合計ジャッジ時間 2,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 15 ms
5,376 KB
testcase_04 AC 7 ms
5,376 KB
testcase_05 AC 7 ms
5,376 KB
testcase_06 AC 18 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 11 ms
5,376 KB
testcase_09 AC 12 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 29 ms
5,376 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 33 ms
5,376 KB
testcase_14 AC 15 ms
5,376 KB
testcase_15 AC 12 ms
5,376 KB
testcase_16 AC 68 ms
5,376 KB
testcase_17 AC 69 ms
5,376 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
		}
		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