結果
問題 | No.1431 東大文系数学2020第2問改 |
ユーザー | kotatsugame |
提出日時 | 2021-03-14 15:52:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 927 ms / 5,000 ms |
コード長 | 2,606 bytes |
コンパイル時間 | 696 ms |
コンパイル使用メモリ | 66,864 KB |
実行使用メモリ | 73,840 KB |
最終ジャッジ日時 | 2024-11-06 05:42:39 |
合計ジャッジ時間 | 14,787 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 100 ms
73,744 KB |
testcase_01 | AC | 99 ms
73,740 KB |
testcase_02 | AC | 98 ms
73,832 KB |
testcase_03 | AC | 746 ms
73,804 KB |
testcase_04 | AC | 99 ms
73,792 KB |
testcase_05 | AC | 768 ms
73,744 KB |
testcase_06 | AC | 702 ms
73,832 KB |
testcase_07 | AC | 727 ms
73,772 KB |
testcase_08 | AC | 746 ms
73,700 KB |
testcase_09 | AC | 897 ms
73,724 KB |
testcase_10 | AC | 554 ms
73,724 KB |
testcase_11 | AC | 487 ms
73,600 KB |
testcase_12 | AC | 596 ms
73,828 KB |
testcase_13 | AC | 391 ms
73,720 KB |
testcase_14 | AC | 391 ms
73,840 KB |
testcase_15 | AC | 378 ms
73,744 KB |
testcase_16 | AC | 319 ms
73,828 KB |
testcase_17 | AC | 300 ms
73,732 KB |
testcase_18 | AC | 299 ms
73,796 KB |
testcase_19 | AC | 927 ms
73,728 KB |
testcase_20 | AC | 300 ms
73,616 KB |
testcase_21 | AC | 686 ms
73,700 KB |
testcase_22 | AC | 316 ms
73,752 KB |
testcase_23 | AC | 920 ms
73,816 KB |
testcase_24 | AC | 917 ms
73,760 KB |
testcase_25 | AC | 99 ms
73,644 KB |
testcase_26 | AC | 101 ms
73,784 KB |
testcase_27 | AC | 100 ms
73,748 KB |
コンパイルメッセージ
a.cpp:10:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
ソースコード
#line 1 "a.cpp" #include<iostream> using namespace std; #line 3 "/home/kotatsugame/library/math/modint.cpp" #include<utility> template<int m> struct modint{ unsigned int x; constexpr modint()noexcept:x(){} template<typename T> constexpr modint(T x_)noexcept:x((x_%=m)<0?x_+m:x_){} constexpr unsigned int val()const noexcept{return x;} constexpr modint&operator++()noexcept{if(++x==m)x=0;return*this;} constexpr modint&operator--()noexcept{if(x==0)x=m;--x;return*this;} constexpr modint operator++(int)noexcept{modint res=*this;++*this;return res;} constexpr modint operator--(int)noexcept{modint res=*this;--*this;return res;} constexpr modint&operator+=(const modint&a)noexcept{x+=a.x;if(x>=m)x-=m;return*this;} constexpr modint&operator-=(const modint&a)noexcept{if(x<a.x)x+=m;x-=a.x;return*this;} constexpr modint&operator*=(const modint&a)noexcept{x=(unsigned long long)x*a.x%m;return*this;} constexpr modint&operator/=(const modint&a)noexcept{return*this*=a.inv();} constexpr modint operator+()const noexcept{return*this;} constexpr modint operator-()const noexcept{return modint()-*this;} constexpr modint pow(long long n)const noexcept { if(n<0)return pow(-n).inv(); modint x=*this,r=1; for(;n;x*=x,n>>=1)if(n&1)r*=x; return r; } constexpr modint inv()const noexcept { int s=x,t=m,x=1,u=0; while(t) { int k=s/t; s-=k*t; swap(s,t); x-=k*u; swap(x,u); } return modint(x); } friend constexpr modint operator+(const modint&a,const modint&b){return modint(a)+=b;} friend constexpr modint operator-(const modint&a,const modint&b){return modint(a)-=b;} friend constexpr modint operator*(const modint&a,const modint&b){return modint(a)*=b;} friend constexpr modint operator/(const modint&a,const modint&b){return modint(a)/=b;} friend constexpr bool operator==(const modint&a,const modint&b){return a.x==b.x;} friend constexpr bool operator!=(const modint&a,const modint&b){return a.x!=b.x;} friend ostream&operator<<(ostream&os,const modint&a){return os<<a.x;} friend istream&operator>>(istream&is,modint&a){long long v;is>>v;a=modint(v);return is;} }; #line 4 "a.cpp" using mint=modint<998244353>; int N,M,K; const int LIM=9000000; mint fac[LIM+1]; mint inv[LIM+1]; mint C(int a,int b){return a<0||b<0||a<b?0:fac[a]*inv[b]*inv[a-b];} main() { fac[0]=1; for(int i=1;i<=LIM;i++)fac[i]=fac[i-1]*i; inv[LIM]=1/fac[LIM]; for(int i=LIM;i--;)inv[i]=inv[i+1]*(i+1); cin>>N>>M>>K; mint ans=0; for(int a=0;a<=N;a++)for(int b=0;b<=N;b++) { mint T=C(a*b,M)*C(N,a)*C(N,b)*C(2*N-a-b,2*N-K-a-b); if(K+a+b&1)T=-T; ans+=T; } cout<<ans<<endl; }