結果

問題 No.1388 Less than K
ユーザー vjudge1vjudge1
提出日時 2025-01-03 17:24:46
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 12 ms / 3,000 ms
コード長 731 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 192,944 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2025-01-03 17:24:52
合計ジャッジ時間 5,684 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,912 KB
testcase_01 AC 10 ms
6,816 KB
testcase_02 AC 9 ms
6,820 KB
testcase_03 AC 9 ms
6,856 KB
testcase_04 AC 10 ms
6,816 KB
testcase_05 AC 8 ms
6,912 KB
testcase_06 AC 8 ms
6,860 KB
testcase_07 AC 9 ms
6,816 KB
testcase_08 AC 9 ms
6,816 KB
testcase_09 AC 8 ms
6,820 KB
testcase_10 AC 8 ms
6,864 KB
testcase_11 AC 10 ms
6,912 KB
testcase_12 AC 8 ms
6,860 KB
testcase_13 AC 9 ms
6,856 KB
testcase_14 AC 8 ms
6,820 KB
testcase_15 AC 8 ms
6,824 KB
testcase_16 AC 9 ms
6,860 KB
testcase_17 AC 8 ms
6,820 KB
testcase_18 AC 8 ms
6,860 KB
testcase_19 AC 9 ms
6,820 KB
testcase_20 AC 9 ms
6,856 KB
testcase_21 AC 9 ms
6,816 KB
testcase_22 AC 10 ms
6,912 KB
testcase_23 AC 8 ms
6,820 KB
testcase_24 AC 9 ms
6,820 KB
testcase_25 AC 8 ms
6,816 KB
testcase_26 AC 8 ms
6,860 KB
testcase_27 AC 9 ms
6,856 KB
testcase_28 AC 9 ms
6,860 KB
testcase_29 AC 8 ms
6,988 KB
testcase_30 AC 10 ms
7,040 KB
testcase_31 AC 10 ms
6,820 KB
testcase_32 AC 10 ms
6,912 KB
testcase_33 AC 8 ms
6,860 KB
testcase_34 AC 8 ms
6,820 KB
testcase_35 AC 10 ms
6,824 KB
testcase_36 AC 9 ms
6,824 KB
testcase_37 AC 9 ms
6,824 KB
testcase_38 AC 9 ms
6,860 KB
testcase_39 AC 10 ms
6,824 KB
testcase_40 AC 9 ms
6,820 KB
testcase_41 AC 9 ms
6,860 KB
testcase_42 AC 9 ms
6,816 KB
testcase_43 AC 9 ms
6,820 KB
testcase_44 AC 9 ms
6,864 KB
testcase_45 AC 9 ms
6,820 KB
testcase_46 AC 9 ms
6,816 KB
testcase_47 AC 9 ms
6,992 KB
testcase_48 AC 8 ms
6,988 KB
testcase_49 AC 9 ms
6,816 KB
testcase_50 AC 9 ms
6,816 KB
testcase_51 AC 8 ms
6,820 KB
testcase_52 AC 9 ms
6,816 KB
testcase_53 AC 8 ms
6,816 KB
testcase_54 AC 9 ms
6,816 KB
testcase_55 AC 12 ms
6,820 KB
testcase_56 AC 8 ms
6,816 KB
testcase_57 AC 9 ms
6,816 KB
testcase_58 AC 9 ms
6,860 KB
testcase_59 AC 9 ms
6,856 KB
testcase_60 AC 8 ms
6,864 KB
testcase_61 AC 9 ms
6,816 KB
testcase_62 AC 8 ms
6,820 KB
testcase_63 AC 10 ms
6,864 KB
testcase_64 AC 9 ms
6,860 KB
testcase_65 AC 8 ms
6,860 KB
testcase_66 AC 9 ms
6,820 KB
testcase_67 AC 10 ms
6,912 KB
testcase_68 AC 9 ms
6,820 KB
testcase_69 AC 9 ms
6,824 KB
testcase_70 AC 9 ms
6,820 KB
testcase_71 AC 9 ms
6,912 KB
testcase_72 AC 8 ms
6,820 KB
testcase_73 AC 8 ms
6,856 KB
testcase_74 AC 9 ms
6,992 KB
testcase_75 AC 10 ms
6,912 KB
testcase_76 AC 8 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:20:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |         scanf("%d%d%d",&n,&m,&k);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int N=4e5+5,P=998244353;
int n,m,k,fac[N],inv[N],ans;
void init(){
	fac[0]=fac[1]=inv[0]=inv[1]=1;
	for(int i=2;i<N;++i)fac[i]=1ll*fac[i-1]*i%P,inv[i]=1ll*(P-P/i)*inv[P%i]%P;
	for(int i=2;i<N;++i)inv[i]=1ll*inv[i]*inv[i-1]%P;
}
int C(int n,int m){
	return 1ll*fac[n]*inv[m]%P*inv[n-m]%P;
}
inline int md(int x){
	return x>=P?x-P:x;
}
int calc(int x,int y){
	return 1ll*C(m,m-x-y>>1)*C(m,m-x+y>>1)%P;
}
int main(){
	scanf("%d%d%d",&n,&m,&k);
	k>>=1,--n,--m;
	if(n>m)swap(n,m);
	m+=n,n=m-n-n;
	init();
	for(int c=1;;++c){
		int ln=2*c*(k+1);
		if(ln+n>m)break;
		ans=md(ans+(c&1?P-calc(n,ln):calc(n,ln)));
	}
	ans=md(2*ans);
	ans=md(ans+calc(0,n));
	printf("%d\n",ans);
	return 0;
}
0