#ifndef Modint_runtime_hpp #define Modint_runtime_hpp #include #include // modulo statically fixed class modint_runtime { long long val; friend std::ostream &operator<<(std::ostream &os, const modint_runtime &other) noexcept { return os << other.val; } friend std::istream &operator>>(std::istream &is, modint_runtime &other) noexcept { long long val; other = modint_runtime((is >> val, val)); return is; } public: static long long &mod() noexcept { static long long mod{}; return mod; } modint_runtime(long long x = 0) : val{(x %= mod()) < 0 ? x + mod() : x} {} long long value() const noexcept { return val; } modint_runtime operator++(int) noexcept { modint_runtime t = *this; return ++val, t; } modint_runtime &operator++() noexcept { return ++val, *this; } modint_runtime operator--(int) noexcept { modint_runtime t = *this; return --val, t; } modint_runtime &operator--() noexcept { return --val, *this; } modint_runtime &operator=(long long other) noexcept { return val = (other %= mod()) < 0 ? other + mod() : other, *this; } modint_runtime &operator+=(long long other) noexcept { return (val += other % mod()) < mod() ? 0 : val -= mod(), *this; } modint_runtime &operator+=(const modint_runtime &other) noexcept { return (val += other.val) < mod() ? 0 : val -= mod(), *this; } modint_runtime &operator-=(long long other) noexcept { return (val += mod() - other % mod()) < mod() ? 0 : val -= mod(), *this; } modint_runtime &operator-=(const modint_runtime &other) noexcept { return (val += mod() - other.val) < mod() ? 0 : val -= mod(), *this; } modint_runtime &operator*=(long long other) noexcept { return (val *= other % mod()) %= mod(), *this; } modint_runtime &operator*=(const modint_runtime &other) noexcept { return (val *= other.val) %= mod(), *this; } modint_runtime &operator/=(long long other) noexcept { return *this *= inverse(other); } modint_runtime &operator/=(const modint_runtime &other) noexcept { return *this *= inverse(other); } modint_runtime operator-() const noexcept { return modint_runtime(-val); } modint_runtime operator+(const modint_runtime &other) const noexcept { return modint_runtime{*this} += other; } modint_runtime operator-(const modint_runtime &other) const noexcept { return modint_runtime{*this} -= other; } modint_runtime operator*(const modint_runtime &other) const noexcept { return modint_runtime{*this} *= other; } modint_runtime operator/(const modint_runtime &other) const noexcept { return modint_runtime{*this} /= other; } bool operator==(const modint_runtime &other) const noexcept { return val == other.val; } bool operator!=(const modint_runtime &other) const noexcept { return val != other.val; } bool operator!() const noexcept { return !val; } friend modint_runtime operator+(long long x, modint_runtime y) noexcept { return {x + y.val}; } friend modint_runtime operator-(long long x, modint_runtime y) noexcept { return {x - y.val}; } friend modint_runtime operator*(long long x, modint_runtime y) noexcept { return {x % mod() * y.val}; } friend modint_runtime operator/(long long x, modint_runtime y) noexcept { return {x % mod() * inverse(y).val}; } static modint_runtime inverse(const modint_runtime &other) noexcept { assert(mod() && other.val); long long a{mod()}, b{other.val}, u{}, v{1}, t{}; while(b) t = a / b, a ^= b ^= (a -= t * b) ^= b, u ^= v ^= (u -= t * v) ^= v; return {u}; } static modint_runtime pow(modint_runtime other, long long e) noexcept { if(e < 0) e = e % (mod() - 1) + mod() - 1; modint_runtime res{1}; while(e) { if(e & 1) res *= other; other *= other, e >>= 1; } return res; } }; // class modint_runtime #endif #ifndef Factorial_runtime_hpp #define Factorial_runtime_hpp #include class factorial_runtime { const int mod; int n; std::vector fact; public: factorial_runtime(int _mod) : mod{_mod}, n{1}, fact{1} {} int modulo() const { return mod; } void reserve(int m) { if(m < n) return; m = 1 << (32 - __builtin_clz(m)); fact.resize(m); for(int i = n; i < m; ++i) fact[i] = (long long)fact[i - 1] * i % mod; n = m; } // modint_runtime operator()(const int x) noexcept { reserve(x); return {x < 0 ? 0 : fact[x], mod}; } modint_runtime operator()(const int x) noexcept { reserve(x); return {x < 0 ? 0 : fact[x]}; } }; #endif #ifndef Inverse_runtime_hpp #define Inverse_runtime_hpp #include class inverse_runtime { const int mod; int n; std::vector inv; public: inverse_runtime(int _mod) : mod{_mod}, n{2}, inv{0, 1} {} int modulo() const { return mod; } void reserve(int m) { if(m < n) return; m = 1 << (32 - __builtin_clz(m)); inv.resize(m); for(int i = n; i < m; ++i) inv[i] = mod - (long long)mod / i * inv[mod % i] % mod; n = m; } // modint_runtime operator()(const int x) noexcept { assert(x), reserve(x); return {inv[x], mod}; } modint_runtime operator()(const int x) noexcept { assert(x), reserve(x); return {inv[x]}; } }; #endif // Inverse_runtime_hpp #ifndef Inverse_factorial_runtime_hpp #define Inverse_factorial_runtime_hpp #include class inverse_factorial_runtime { inverse_runtime &inv_gen; const int mod; int n; std::vector inv_fact; public: inverse_factorial_runtime(inverse_runtime &_inv_gen) : inv_gen{_inv_gen}, mod{_inv_gen.modulo()}, n{1}, inv_fact{1} {} int modulo() const { return mod; } void reserve(int m) { if(m < n) return; m = 1 << (32 - __builtin_clz(m)); inv_fact.resize(m); for(int i = n; i < m; ++i) inv_fact[i] = inv_fact[i - 1] * inv_gen(i).value() % mod; n = m; } // modint_runtime operator()(const int x) noexcept { reserve(x); return {x < 0 ? 0 : inv_fact[x], mod}; } modint_runtime operator()(const int x) noexcept { reserve(x); return {x < 0 ? 0 : inv_fact[x]}; } }; #endif // Inverse_factorial_runtime_hpp #ifndef Binomial_runtime_hpp #define Binomial_runtime_hpp #include class binomial_runtime { factorial_runtime &fact_gen; inverse_factorial_runtime &inv_fact_gen; const int mod; public: binomial_runtime(factorial_runtime &_fact_gen, inverse_factorial_runtime &_inv_fact_gen) : fact_gen(_fact_gen), inv_fact_gen(_inv_fact_gen), mod{_fact_gen.modulo()} {} int modulo() const { return mod; } void reserve(const int m) noexcept { fact_gen.reserve(m); inv_fact_gen.reserve(m); } modint_runtime operator()(const int x, const int y) noexcept { return fact_gen(x) * inv_fact_gen(y) * inv_fact_gen(x - y); } }; #endif using namespace std; main() { const int mod=1e9+7; using mint=modint_runtime; mint::mod()=mod; factorial_runtime fac(mod); inverse_runtime inv(mod); inverse_factorial_runtime ifac(inv); binomial_runtime binom(fac,ifac); // binom.reserve(2200000); int x,y,z; cin>>x>>y>>z; // mint ans{0,mod},s{1,mod}; mint ans{0},s{1}; for(int k=x+y+z,f=1; k>=0; --k,f^=1) { mint tmp=s; if(x) { tmp*=binom(x+k-1,k-1); } if(y) { tmp*=binom(y+k-1,k-1); } if(z) { tmp*=binom(z+k-1,k-1); } ans+=tmp; s*=2; if(f) { s-=binom(x+y+z+1,k); } else { s+=binom(x+y+z+1,k); } } cout << ans << "\n"; return 0; }