#include // clang-format off using Int = long long; #define REP_(i, a_, b_, a, b, ...) for (Int i = (a), lim##i = (b); i < lim##i; i++) #define REP(i, ...) REP_(i, __VA_ARGS__, __VA_ARGS__, 0, __VA_ARGS__) struct SetupIO { SetupIO() { std::cin.tie(nullptr), std::ios::sync_with_stdio(false), std::cout << std::fixed << std::setprecision(13); } } setup_io; #ifndef dump #define dump(...) #endif // clang-format on /** * author: knshnb * created: Sat Jun 6 01:37:03 JST 2020 **/ template T pow(T x, long long n, const T UNION = 1) { T ret = UNION; while (n) { if (n & 1) ret *= x; x *= x; n >>= 1; } return ret; } /// @docs src/Math/ModInt.md template struct ModInt { int x; static int runtime_mod; static std::unordered_map to_inv; // テンプレート引数が負のときは実行時ModInt static int mod() { return Mod < 0 ? runtime_mod : Mod; } static void set_runtime_mod(int mod) { static_assert(Mod < 0, "template parameter Mod must be negative for runtime ModInt"); runtime_mod = mod; to_inv.clear(); } ModInt() : x(0) {} ModInt(long long x_) { if ((x = x_ % mod() + mod()) >= mod()) x -= mod(); } ModInt& operator+=(ModInt rhs) { if ((x += rhs.x) >= mod()) x -= mod(); return *this; } ModInt& operator*=(ModInt rhs) { x = (unsigned long long)x * rhs.x % mod(); return *this; } ModInt& operator-=(ModInt rhs) { if ((x -= rhs.x) < 0) x += mod(); return *this; } ModInt& operator/=(ModInt rhs) { x = (unsigned long long)x * rhs.inv().x % mod(); return *this; } ModInt operator-() const { return -x < 0 ? mod() - x : -x; } ModInt operator+(ModInt rhs) const { return ModInt(*this) += rhs; } ModInt operator*(ModInt rhs) const { return ModInt(*this) *= rhs; } ModInt operator-(ModInt rhs) const { return ModInt(*this) -= rhs; } ModInt operator/(ModInt rhs) const { return ModInt(*this) /= rhs; } bool operator==(ModInt rhs) const { return x == rhs.x; } bool operator!=(ModInt rhs) const { return x != rhs.x; } ModInt inv() const { return to_inv.count(this->x) ? to_inv[this->x] : (to_inv[this->x] = pow(*this, mod() - 2).x); } friend std::ostream& operator<<(std::ostream& s, ModInt a) { s << a.x; return s; } friend std::istream& operator>>(std::istream& s, ModInt& a) { long long tmp; s >> tmp; a = ModInt(tmp); return s; } friend std::string to_string(ModInt a) { return std::to_string(a.x); } }; template std::unordered_map ModInt::to_inv; template int ModInt::runtime_mod; #ifndef CALL_FROM_TEST using mint = ModInt<1000000007>; #endif template struct Matrix { std::vector> A; Matrix() {} Matrix(int n) : A(n, std::vector(n, 0)) {} Matrix(const std::vector> &A_) : A(A_) {} static Matrix eye(int n) { Matrix mat(n); for (int i = 0; i < n; i++) mat[i][i] = 1; return (mat); } int height() const { return (A.size()); } int width() const { return (A[0].size()); } std::vector &operator[](int k) { return A[k]; } const std::vector &operator[](int k) const { return (A[k]); } Matrix &operator+=(const Matrix &B) { assert(A.size() == B.A.size() && A[0].size() == B.A[0].size()); for (int i = 0; i < A.size(); i++) for (int j = 0; j < A[0].size(); j++) (*this)[i][j] += B[i][j]; return (*this); } Matrix &operator-=(const Matrix &B) { assert(A.size() == B.A.size() && A[0].size() == B.A[0].size()); for (int i = 0; i < A.size(); i++) for (int j = 0; j < A[0].size(); j++) (*this)[i][j] -= B[i][j]; return (*this); } Matrix &operator*=(const Matrix &B) { int n = height(), m = B.width(), p = width(); assert(p == B.height()); std::vector> C(n, std::vector(m, 0)); for (int i = 0; i < n; i++) for (int j = 0; j < m; j++) for (int k = 0; k < p; k++) C[i][j] = (C[i][j] + (*this)[i][k] * B[k][j]); A.swap(C); return (*this); } Matrix operator+(const Matrix &B) const { return (Matrix(*this) += B); } Matrix operator-(const Matrix &B) const { return (Matrix(*this) -= B); } Matrix operator*(const Matrix &B) const { return (Matrix(*this) *= B); } std::vector operator*(const std::vector &x) const { int n = height(), m = width(); assert(m == x.size()); std::vector ret(n); for (int i = 0; i < n; i++) for (int j = 0; j < m; j++) ret[i] += (*this)[i][j] * x[j]; return ret; } }; signed main() { Int n; std::cin >> n; std::vector x(6); x[0] = 1; Matrix A(6); REP(j, 6) A[0][j] = mint(1) / 6; REP(i, 1, 6) A[i][i - 1] = 1; auto ret = pow(A, n, Matrix::eye(6)) * x; std::cout << ret[0] << std::endl; }