結果
問題 | No.2017 Mod7 Parade |
ユーザー | auaua |
提出日時 | 2022-07-22 21:53:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 172 ms / 2,000 ms |
コード長 | 1,708 bytes |
コンパイル時間 | 1,838 ms |
コンパイル使用メモリ | 173,892 KB |
実行使用メモリ | 14,208 KB |
最終ジャッジ日時 | 2024-07-04 06:09:03 |
合計ジャッジ時間 | 4,693 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 133 ms
11,776 KB |
testcase_04 | AC | 89 ms
8,960 KB |
testcase_05 | AC | 62 ms
7,296 KB |
testcase_06 | AC | 144 ms
12,672 KB |
testcase_07 | AC | 20 ms
6,940 KB |
testcase_08 | AC | 84 ms
8,576 KB |
testcase_09 | AC | 33 ms
6,944 KB |
testcase_10 | AC | 86 ms
8,576 KB |
testcase_11 | AC | 116 ms
10,752 KB |
testcase_12 | AC | 104 ms
9,856 KB |
testcase_13 | AC | 170 ms
14,208 KB |
testcase_14 | AC | 168 ms
14,208 KB |
testcase_15 | AC | 169 ms
14,080 KB |
testcase_16 | AC | 172 ms
14,080 KB |
testcase_17 | AC | 168 ms
14,160 KB |
testcase_18 | AC | 155 ms
14,208 KB |
testcase_19 | AC | 34 ms
14,040 KB |
testcase_20 | AC | 2 ms
6,940 KB |
ソースコード
#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(); }