結果
問題 | No.2303 Frog on Grid |
ユーザー | pointN |
提出日時 | 2023-05-12 23:05:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 66 ms / 2,000 ms |
コード長 | 1,618 bytes |
コンパイル時間 | 3,648 ms |
コンパイル使用メモリ | 199,032 KB |
実行使用メモリ | 24,944 KB |
最終ジャッジ日時 | 2024-05-06 13:07:15 |
合計ジャッジ時間 | 5,652 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 20 ms
14,976 KB |
testcase_01 | AC | 20 ms
15,104 KB |
testcase_02 | AC | 60 ms
23,528 KB |
testcase_03 | AC | 40 ms
19,136 KB |
testcase_04 | AC | 61 ms
23,224 KB |
testcase_05 | AC | 63 ms
24,008 KB |
testcase_06 | AC | 39 ms
19,532 KB |
testcase_07 | AC | 62 ms
22,892 KB |
testcase_08 | AC | 64 ms
22,908 KB |
testcase_09 | AC | 30 ms
17,120 KB |
testcase_10 | AC | 39 ms
18,684 KB |
testcase_11 | AC | 30 ms
17,080 KB |
testcase_12 | AC | 41 ms
20,484 KB |
testcase_13 | AC | 19 ms
15,104 KB |
testcase_14 | AC | 20 ms
15,104 KB |
testcase_15 | AC | 18 ms
14,976 KB |
testcase_16 | AC | 20 ms
15,048 KB |
testcase_17 | AC | 19 ms
15,048 KB |
testcase_18 | AC | 64 ms
24,944 KB |
testcase_19 | AC | 65 ms
24,940 KB |
testcase_20 | AC | 63 ms
24,816 KB |
testcase_21 | AC | 66 ms
24,944 KB |
testcase_22 | AC | 64 ms
24,816 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <functional> #include <cmath> #include <iomanip> #include <stack> #include <queue> #include <numeric> #include <map> #include <unordered_map> #include <set> #include <fstream> #include <chrono> #include <random> #include <bitset> #include <atcoder/all> #define rep(i,n) for(int i=0;i<(n);i++) #define all(x) x.begin(), x.end() #define rall(x) x.rbegin(), x.rend() #define sz(x) ((int)(x).size()) #define pb push_back using ll = long long; using namespace std; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } ll gcd(ll a, ll b) {return b?gcd(b,a%b):a;} ll lcm(ll a, ll b) {return a/gcd(a,b)*b;} const ll mod = 998244353; vector<ll> fac(500000), finv(500000), inv(500000); void initcom(){ fac[0] = fac[1] = finv[0] = finv[1] = inv[1] = 1; for(int i=2; i<500000; 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; } } ll nCr(int n, int k){ if(n<k) return 0; if(n<0 || k<0) return 0; return fac[n] * (finv[k] * finv[n-k] % mod) % mod; } int main(){ int H,W; cin >> H >> W; initcom(); vector<ll> A(H+1,0); vector<ll> B(W+1,0); for(int i=1;i<=H;i++){ A[i] = nCr(i,2*i-H)*finv[i]%mod; } for(int i=1;i<=W;i++){ B[i] = nCr(i,2*i-W)*finv[i]%mod; } auto C = atcoder::convolution(A,B); ll ans = 0; for(int i=1;i<sz(C);i++){ ans += C[i]*fac[i]%mod; } cout << ans%mod << endl; return 0; }