結果

問題 No.1533 Don't be Negative!
ユーザー leukocyteleukocyte
提出日時 2022-07-02 12:26:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5,647 ms / 8,000 ms
コード長 640 bytes
コンパイル時間 1,892 ms
コンパイル使用メモリ 167,292 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 13:24:10
合計ジャッジ時間 111,384 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 14 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 635 ms
6,820 KB
testcase_12 AC 535 ms
6,816 KB
testcase_13 AC 75 ms
6,816 KB
testcase_14 AC 249 ms
6,816 KB
testcase_15 AC 586 ms
6,816 KB
testcase_16 AC 2,012 ms
6,820 KB
testcase_17 AC 70 ms
6,820 KB
testcase_18 AC 1,786 ms
6,816 KB
testcase_19 AC 165 ms
6,820 KB
testcase_20 AC 2,106 ms
6,816 KB
testcase_21 AC 296 ms
6,816 KB
testcase_22 AC 1,824 ms
6,816 KB
testcase_23 AC 1,171 ms
6,820 KB
testcase_24 AC 1,132 ms
6,816 KB
testcase_25 AC 1,285 ms
6,816 KB
testcase_26 AC 158 ms
6,816 KB
testcase_27 AC 1,404 ms
6,820 KB
testcase_28 AC 2,654 ms
6,820 KB
testcase_29 AC 1,853 ms
6,820 KB
testcase_30 AC 5,072 ms
6,820 KB
testcase_31 AC 29 ms
6,816 KB
testcase_32 AC 330 ms
6,816 KB
testcase_33 AC 2,275 ms
6,820 KB
testcase_34 AC 12 ms
6,816 KB
testcase_35 AC 1,312 ms
6,820 KB
testcase_36 AC 2,099 ms
6,816 KB
testcase_37 AC 237 ms
6,820 KB
testcase_38 AC 4,953 ms
6,816 KB
testcase_39 AC 3,388 ms
6,820 KB
testcase_40 AC 3,671 ms
6,816 KB
testcase_41 AC 2,865 ms
6,816 KB
testcase_42 AC 3,974 ms
6,816 KB
testcase_43 AC 3,572 ms
6,816 KB
testcase_44 AC 2,511 ms
6,816 KB
testcase_45 AC 3,090 ms
6,820 KB
testcase_46 AC 3,165 ms
6,816 KB
testcase_47 AC 3,125 ms
6,816 KB
testcase_48 AC 3,623 ms
6,820 KB
testcase_49 AC 3,675 ms
6,816 KB
testcase_50 AC 5,526 ms
6,820 KB
testcase_51 AC 5,013 ms
6,820 KB
testcase_52 AC 2,981 ms
6,816 KB
testcase_53 AC 4,495 ms
6,820 KB
testcase_54 AC 5,647 ms
6,816 KB
testcase_55 AC 5,642 ms
6,820 KB
testcase_56 AC 5,629 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
const int N=4e4,S=8e4;
const int mod=998244353;
int n,m,k;
int f[S+5],g[S+5];
int c[N+5];
int ans;
int main(){
	scanf("%d %d %d",&n,&m,&k);
	f[0]=1;
	int ms=2*m-(k>0),tmp=1;
	for(int i=1;i<=n;i++){
		int r=min(i,n-i)*m;
		ll s=0;
		for(int j=-m;j<m;j++) s+=f[abs(j)];
		for(int j=0;j<=r;j++){
			s+=f[j+m];
			if(k) g[j]=(s-f[j+k]-f[abs(j-k)])%mod;
			else g[j]=(s-f[j])%mod;
			s-=f[abs(j-m)];
		}
		memcpy(f,g,(r+1)*sizeof(int));
		tmp=1ll*tmp*ms%mod;
		int c=499122177ll*(tmp-f[0])%mod;
		ans=(1ll*ans*ms+1ll*c*(n-i+1))%mod;
	}
	printf("%d\n",(ans+mod)%mod);
	return 0;
}
0