結果
問題 | No.1414 東大文系数学2021第2問改 |
ユーザー | 👑 Nachia |
提出日時 | 2021-03-01 10:49:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 610 bytes |
コンパイル時間 | 1,956 ms |
コンパイル使用メモリ | 201,056 KB |
実行使用メモリ | 237,696 KB |
最終ジャッジ日時 | 2024-10-03 00:48:17 |
合計ジャッジ時間 | 7,388 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 475 ms
237,696 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 442 ms
237,696 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using ull=unsigned long long; #define rep(i,n) for(int i=0; i<(n); i++) const ull m=998244353; const int Z=10000000; ull F[Z+1],I[Z+1],iF[Z+1]; ull C(int n,int r){ return F[n]*iF[r]%m*iF[n-r]%m; } int main(){ int N,M,K; cin>>N>>M>>K; F[0]=I[1]=iF[0]=1; for(int i=1; i<=N; i++) F[i]=F[i-1]*i%m; for(int i=2; i<=N; i++) I[i]=m-m/i*I[m%i]%m; for(int i=1; i<=N; i++) iF[i]=iF[i-1]*I[i]%m; ull ans=C(N,M), cof=m-1; for(int r=0; M>=r*K; r++){ ans=(ans+C(N-M+1,r)*C(N-r*K,M-r*K)%m*cof)%m; cof=m-cof; } cout<<ans<<endl; return 0; }