結果
問題 | No.2023 Tiling is Fun |
ユーザー | 👑 CleyL |
提出日時 | 2023-06-06 11:15:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 8 ms / 2,000 ms |
コード長 | 888 bytes |
コンパイル時間 | 592 ms |
コンパイル使用メモリ | 73,988 KB |
実行使用メモリ | 7,936 KB |
最終ジャッジ日時 | 2024-06-09 06:11:15 |
合計ジャッジ時間 | 1,449 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
7,936 KB |
testcase_01 | AC | 8 ms
7,936 KB |
testcase_02 | AC | 8 ms
7,808 KB |
testcase_03 | AC | 8 ms
7,936 KB |
testcase_04 | AC | 8 ms
7,936 KB |
testcase_05 | AC | 8 ms
7,936 KB |
testcase_06 | AC | 7 ms
7,936 KB |
testcase_07 | AC | 8 ms
7,936 KB |
testcase_08 | AC | 8 ms
7,936 KB |
testcase_09 | AC | 7 ms
7,936 KB |
testcase_10 | AC | 8 ms
7,936 KB |
testcase_11 | AC | 8 ms
7,936 KB |
testcase_12 | AC | 7 ms
7,936 KB |
testcase_13 | AC | 8 ms
7,936 KB |
testcase_14 | AC | 7 ms
7,936 KB |
testcase_15 | AC | 8 ms
7,936 KB |
testcase_16 | AC | 7 ms
7,936 KB |
testcase_17 | AC | 8 ms
7,936 KB |
testcase_18 | AC | 7 ms
7,936 KB |
testcase_19 | AC | 7 ms
7,936 KB |
ソースコード
#include <iostream> #include <vector> using namespace std; const long long MOD = 998244353; template <long long mod> struct Combination { long long n_max; vector<long long> fac, inv, finv; Combination(int n):n_max(n), fac(n+1,1), inv(n+1,1), finv(n+1,1){ for(int i = 2; n > i; i++){ fac[i] = (fac[i-1]*i)%mod; inv[i] = mod-((inv[mod%i]*(mod/i))%mod); finv[i] = (finv[i-1]*inv[i])%mod; } } long long C(int n, int r){ if(n < r)return 0; if(n > n_max)return 0; return (((fac[n]*finv[r])%mod)*finv[n-r])%mod; } long long P(int n, int r){ if(n < r)return 0; if(n > n_max)return 0; return (fac[n]*finv[n-r])%mod; } long long H(int n, int r){ if(n==0 && r==0)return 1; return C(n+r-1, r); } }; using comb = Combination<MOD>; int main(){ comb A(200000); int a,b;cin>>a>>b; cout << A.C(a+b-2,b-1) << endl; }