結果

問題 No.2807 Have Another Go (Easy)
ユーザー kotatsugamekotatsugame
提出日時 2024-07-12 21:33:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 3,000 ms
コード長 622 bytes
コンパイル時間 624 ms
コンパイル使用メモリ 72,576 KB
実行使用メモリ 7,568 KB
最終ジャッジ日時 2024-07-12 21:33:53
合計ジャッジ時間 2,385 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,472 KB
testcase_01 AC 10 ms
7,568 KB
testcase_02 AC 9 ms
7,552 KB
testcase_03 AC 8 ms
7,424 KB
testcase_04 AC 7 ms
7,460 KB
testcase_05 AC 10 ms
7,552 KB
testcase_06 AC 9 ms
7,412 KB
testcase_07 AC 5 ms
7,424 KB
testcase_08 AC 6 ms
7,456 KB
testcase_09 AC 7 ms
7,552 KB
testcase_10 AC 7 ms
7,552 KB
testcase_11 AC 11 ms
7,424 KB
testcase_12 AC 11 ms
7,424 KB
testcase_13 AC 11 ms
7,552 KB
testcase_14 AC 11 ms
7,532 KB
testcase_15 AC 11 ms
7,552 KB
testcase_16 AC 12 ms
7,552 KB
testcase_17 AC 12 ms
7,444 KB
testcase_18 AC 12 ms
7,464 KB
testcase_19 AC 12 ms
7,396 KB
testcase_20 AC 11 ms
7,552 KB
testcase_21 AC 11 ms
7,552 KB
testcase_22 AC 12 ms
7,492 KB
testcase_23 AC 11 ms
7,400 KB
testcase_24 AC 11 ms
7,424 KB
testcase_25 AC 11 ms
7,416 KB
testcase_26 AC 11 ms
7,548 KB
testcase_27 AC 12 ms
7,424 KB
testcase_28 AC 12 ms
7,552 KB
testcase_29 AC 12 ms
7,444 KB
testcase_30 AC 11 ms
7,552 KB
testcase_31 AC 4 ms
7,540 KB
testcase_32 AC 4 ms
7,532 KB
testcase_33 AC 4 ms
7,424 KB
testcase_34 AC 4 ms
7,424 KB
testcase_35 AC 5 ms
7,424 KB
testcase_36 AC 4 ms
7,424 KB
testcase_37 AC 4 ms
7,440 KB
testcase_38 AC 5 ms
7,552 KB
testcase_39 AC 4 ms
7,488 KB
testcase_40 AC 5 ms
7,416 KB
testcase_41 AC 5 ms
7,424 KB
testcase_42 AC 5 ms
7,428 KB
testcase_43 AC 5 ms
7,424 KB
testcase_44 AC 5 ms
7,452 KB
testcase_45 AC 5 ms
7,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
#include<vector>
#include<cassert>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
mint dp[1<<20];
int N,M,K;
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>M>>K;
	dp[0]=1;
	for(int i=0;i<N+N;i++)
	{
		for(int x=1;x<=6;x++)dp[i+x]+=dp[i];
	}
	for(;K--;)
	{
		int C;cin>>C;
		mint c=0,nc=0;
		for(int x=1;x<=6;x++)
		{
			int l=N+N-C-x,r=N+N-C-1;
			l=max(l,0);
			for(int t=l;t<=r;t++)c+=dp[t];
			l=N-C-x,r=N-C-1;
			l=max(l,0);
			for(int t=l;t<=r;t++)nc+=dp[t];
		}
		cout<<(c*dp[C]+nc*(dp[N+C]-dp[C]*dp[N])).val()<<"\n";
	}
}
0