結果

問題 No.1086 桁和の桁和2
ユーザー kappybarkappybar
提出日時 2020-06-21 15:10:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 196 ms / 3,000 ms
コード長 1,370 bytes
コンパイル時間 1,861 ms
コンパイル使用メモリ 170,712 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-07-22 18:00:58
合計ジャッジ時間 6,233 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 132 ms
6,400 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 82 ms
5,376 KB
testcase_11 AC 22 ms
5,376 KB
testcase_12 AC 6 ms
5,376 KB
testcase_13 AC 105 ms
5,632 KB
testcase_14 AC 63 ms
5,376 KB
testcase_15 AC 25 ms
5,376 KB
testcase_16 AC 135 ms
5,376 KB
testcase_17 AC 13 ms
5,376 KB
testcase_18 AC 189 ms
6,400 KB
testcase_19 AC 153 ms
5,888 KB
testcase_20 AC 20 ms
5,376 KB
testcase_21 AC 133 ms
5,376 KB
testcase_22 AC 190 ms
6,400 KB
testcase_23 AC 113 ms
5,376 KB
testcase_24 AC 79 ms
5,376 KB
testcase_25 AC 159 ms
5,760 KB
testcase_26 AC 129 ms
5,376 KB
testcase_27 AC 93 ms
5,376 KB
testcase_28 AC 78 ms
5,376 KB
testcase_29 AC 87 ms
5,376 KB
testcase_30 AC 196 ms
6,272 KB
testcase_31 AC 192 ms
6,272 KB
testcase_32 AC 195 ms
6,528 KB
testcase_33 AC 194 ms
6,272 KB
testcase_34 AC 196 ms
6,400 KB
testcase_35 AC 131 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
constexpr int INF = 1e9;
constexpr long long LINF = 1e17;
constexpr int MOD = 1000000007;
constexpr double PI = 3.14159265358979323846;

long long modpow(long long x, long long n) {
    long long ret = 1;
    while (n > 0) {
        if (n & 1) ret = (ret * x) % MOD;  
        x = (x * x) % MOD;
        n >>= 1;  
    }
    return ret;
}

long long inverse(long long x){
    return modpow(x,MOD-2);
}

int main(){
    int n;
    cin >> n;
    vector<ll> l(n),r(n),d(n);
    rep(i,n) cin >> l[i];
    rep(i,n) cin >> r[i];
    rep(i,n) cin >> d[i];

    vector<ll> dp(n+1,0);
    dp[0] = 1;

    ll inv9 = inverse(9);
    for(int i=1;i<=n;i++){
        if(i==1){
            if(d[i-1]==0){
                dp[i] = dp[i-1];
                continue;
            }
        }else{
            if(d[i-1]==0 && d[i-2]>0){
                cout << 0 << endl;
                return 0;
            }else if(d[i-1]==0){
                dp[i] = dp[i-1];
                continue;
            }
        }
        ll res = ((modpow(10,r[i-1]) - modpow(10,l[i-1]) + MOD) * inv9)%MOD;
        if(d[i-1]==d[i-2]) ++ res;
        dp[i] = (dp[i-1] * res)%MOD;
    }
    cout << dp[n] << endl;
    return 0;
}
0