結果

問題 No.2017 Mod7 Parade
ユーザー auauaauaua
提出日時 2022-07-22 21:53:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 1,708 bytes
コンパイル時間 1,830 ms
コンパイル使用メモリ 172,112 KB
実行使用メモリ 14,264 KB
最終ジャッジ日時 2023-09-17 09:48:15
合計ジャッジ時間 4,715 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 137 ms
11,436 KB
testcase_04 AC 91 ms
8,772 KB
testcase_05 AC 69 ms
7,228 KB
testcase_06 AC 151 ms
12,484 KB
testcase_07 AC 20 ms
4,376 KB
testcase_08 AC 87 ms
8,244 KB
testcase_09 AC 34 ms
5,048 KB
testcase_10 AC 87 ms
8,472 KB
testcase_11 AC 120 ms
10,812 KB
testcase_12 AC 106 ms
9,524 KB
testcase_13 AC 175 ms
14,264 KB
testcase_14 AC 175 ms
13,756 KB
testcase_15 AC 175 ms
13,764 KB
testcase_16 AC 173 ms
14,044 KB
testcase_17 AC 173 ms
14,012 KB
testcase_18 AC 157 ms
13,812 KB
testcase_19 AC 35 ms
13,752 KB
testcase_20 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <unordered_set>
#include <random>
//#define int long long
#define REP(i,m,n) for(int i=(m);i<(n);i++)
#define rep(i,n) REP(i,0,n)
#define pb push_back
#define all(a) a.begin(),a.end()
#define rall(c) (c).rbegin(),(c).rend()
#define mp make_pair
#define endl '\n'
//#define vec vector<ll>
//#define mat vector<vector<ll> >
#define fi first
#define se second
#define double long double
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll> pll;
//typedef long double ld;
typedef complex<double> Complex;
const ll INF=1e9+7;
const ll MOD=998244353;
const ll inf=INF*INF;
const ll mod=MOD;
const ll inv2=499122177;
const ll MAX=200010;
const double PI=acos(-1.0);
typedef vector<vector<ll> > mat;
typedef vector<ll> vec;

ll dx[]={0,1,0,-1,-1,-1,1,1};
ll dy[]={1,0,-1,0,-1,1,-1,1};

ll rui(ll a,ll b,ll mod){
    ll res=1;
    ll x=a;
    while(b){
        if(b&1)res=res*x%mod;
        x=x*x%mod;
        b/=2;
    }
    return res;
}


void solve(){
    ll K;cin>>K;
    vector<ll>D(K),L(K);
    rep(i,K)cin>>D[i]>>L[i];
    vector<ll>z(K);
    rep(i,K){
        ll s=rui(10,L[i],7)-1,inv9=rui(9,5,7);
        s*=inv9;
        s%=7;
        s*=D[i];
        s%=7;
        if(s<0)s+=7;
        z[i]=s;
    }
    vector<vector<ll> >dp(K+1,vector<ll>(7));
    dp[0][0]=1;
    rep(i,K){
        rep(j,7){
            dp[i+1][j]=(dp[i+1][j]+dp[i][j])%INF;
            ll zz=(j*rui(10,L[i],7)%7+z[i])%7;
            dp[i+1][zz]=(dp[i+1][zz]+dp[i][j])%INF;
        }
    }
    ll ans=0;
    rep(i,7){
        ans=(ans+i*dp[K][i])%INF;
    }
    cout<<ans<<endl;
}

signed main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    solve();
}
0