結果

問題 No.2017 Mod7 Parade
ユーザー auauaauaua
提出日時 2022-07-22 21:53:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,708 bytes
コンパイル時間 2,031 ms
コンパイル使用メモリ 171,948 KB
実行使用メモリ 14,320 KB
最終ジャッジ日時 2023-09-17 09:47:21
合計ジャッジ時間 4,996 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,384 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
4,376 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])%mod;
    }
    cout<<ans<<endl;
}

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