結果

問題 No.2017 Mod7 Parade
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-13 07:11:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 1,243 bytes
コンパイル時間 1,182 ms
コンパイル使用メモリ 110,968 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-05-06 17:29:51
合計ジャッジ時間 5,711 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 197 ms
9,984 KB
testcase_04 AC 127 ms
7,680 KB
testcase_05 AC 100 ms
6,528 KB
testcase_06 AC 211 ms
10,624 KB
testcase_07 AC 28 ms
5,376 KB
testcase_08 AC 124 ms
7,552 KB
testcase_09 AC 48 ms
5,376 KB
testcase_10 AC 125 ms
7,424 KB
testcase_11 AC 170 ms
9,088 KB
testcase_12 AC 149 ms
8,448 KB
testcase_13 AC 249 ms
11,904 KB
testcase_14 AC 263 ms
11,904 KB
testcase_15 AC 257 ms
11,776 KB
testcase_16 AC 254 ms
11,776 KB
testcase_17 AC 260 ms
11,776 KB
testcase_18 AC 251 ms
11,776 KB
testcase_19 AC 51 ms
11,776 KB
testcase_20 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>

using namespace std;

using ll = long long;
const ll modc = 1e9+7;
ll inv9;

long long mod_exp(long long b, long long e, long long m){
    if (e > 0 && b == 0) return 0;
    long long ans = 1;
    b %= m;

    while (e > 0){
        if ((e & 1LL)) ans = (ans * b) % m;
        e = e >> 1LL;
        b = (b*b) % m;
    }

    return ans;
}

long long rep(long long b, long long e, long long m){
    return (((mod_exp(10, e, m) + m - 1) * inv9) % m * b) % m;
}

int main(){

    ll K, ans=0, r, D, L;
    inv9=mod_exp(9, 5, 7);
    cin >> K;

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

    for (int i=1; i<=K; i++){
        cin >> D >> L;
        for (int j=0; j<7; j++){
            dp[i][j] += dp[i-1][j];
            dp[i][j] %= modc;
            r = (mod_exp(10, L, 7) * j) % 7;
            r = (r + rep(D, L, 7)) % 7;
            dp[i][r] += dp[i-1][j];
            dp[i][r] %= modc;
        }
    }

    for (int i=0; i<7; i++){
        ans += (dp[K][i] * i) % modc;
        ans %= modc;
    }

    cout << ans << endl;

    return 0;
}
0