結果
| 問題 | No.793 うし数列 2 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2019-08-21 23:11:54 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 338 bytes | 
| コンパイル時間 | 1,748 ms | 
| コンパイル使用メモリ | 193,188 KB | 
| 最終ジャッジ日時 | 2025-01-07 14:36:31 | 
| ジャッジサーバーID (参考情報) | judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 21 | 
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int mpow(ll a,ll b,int m) {
    int ans=1;
    while (b) {
        if (b&1) ans=ans*a%m;
        a=a*a%m;
        b>>=1;
    }
    return ans;
}
int main() {
    int m=1e9+7;
    ll n;
    cin>>n;
    cout<<(4LL*mpow(10,n,m)-1)%m*mpow(3,m-2,m)%m<<endl;
    return 0;
}
            
            
            
        