結果
問題 | No.1662 (ox) Alternative |
ユーザー | chocorusk |
提出日時 | 2021-08-27 23:07:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,340 bytes |
コンパイル時間 | 3,339 ms |
コンパイル使用メモリ | 190,188 KB |
実行使用メモリ | 19,152 KB |
最終ジャッジ日時 | 2024-11-21 04:58:03 |
合計ジャッジ時間 | 4,346 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
19,144 KB |
testcase_01 | WA | - |
testcase_02 | AC | 260 ms
19,144 KB |
testcase_03 | AC | 264 ms
19,152 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #include <list> #include <atcoder/all> #define popcount __builtin_popcount using namespace std; using namespace atcoder; typedef long long ll; typedef pair<int, int> P; using mint=modint1000000007; mint f[2000010], invf[2000010]; void fac(int n){ f[0]=1; for(ll i=1; i<=n; i++) f[i]=f[i-1]*i; invf[n]=f[n].inv(); for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1); } mint comb(int x, int y){ if(!(0<=y && y<=x)) return 0; return f[x]*invf[y]*invf[x-y]; } int main() { fac(400000); int t; cin>>t; while(t--){ int a, b, c, d; cin>>a>>b>>c>>d; if(a!=b){ cout<<0<<endl; continue; } if(a==0){ cout<<0<<endl; continue; } mint ans=f[d+1]*comb(a+d, d)*comb(a+d, d+1)*f[2*a+d]*invf[a+d]*invf[a+d+1]*invf[a+d]*f[a+d-1]*comb(2*a+c+d, c); cout<<ans.val()<<endl; } return 0; }