#include #define ll long long #define INF 1000000005 #define MOD 1000000007 #define EPS 1e-10 #define rep(i,n) for(int i=0;i<(int)(n);++i) #define rrep(i,n) for(int i=(int)(n)-1;i>=0;--i) #define srep(i,s,t) for(int i=(int)(s);i<(int)(t);++i) #define each(a,b) for(auto (a): (b)) #define all(v) (v).begin(),(v).end() #define len(v) (int)(v).size() #define zip(v) sort(all(v)),v.erase(unique(all(v)),v.end()) #define cmx(x,y) x=max(x,y) #define cmn(x,y) x=min(x,y) #define fi first #define se second #define pb push_back #define show(x) cout<<#x<<" = "<<(x)< P; typedef pair pll; typedef vector vi; typedef vector vvi; typedef vector vl; typedef vector vd; typedef vector

vp; typedef vector vs; const int MAX_N = 100005; struct RollingHash { static const ll mo0=1000000007,mo1=1000000009; static ll mul0,mul1; static const ll add0=1000010007,add1=1003333331; static vector pmo[2]; string s; int sz; vector hash_[2]; void init(string s) { this->s=s; sz=(int)s.size(); hash_[0].resize(sz+1,0),hash_[1].resize(sz+1,0); if(!mul0) mul0=10009+(((ll)&mul0)>>5)%259,mul1=10007+(((ll)&mul1)>>5)%257; if(pmo[0].empty()) pmo[0].pb(1),pmo[1].pb(1); rep(i,sz) hash_[0][i+1]=(hash_[0][i]*mul0+add0+s[i])%mo0; //hash_[0][i]はインデックス0~i-1までの文字列のハッシュ値 rep(i,sz) hash_[1][i+1]=(hash_[1][i]*mul1+add1+s[i])%mo1; } pair hash(int l,int r) { //文字列sのインデックスl~rまでの部分文字列のハッシュ値 if(l>r) return make_pair(0,0); while(pmo[0].size() hash(string s) { init(s); return hash(0,(int)s.size()-1); } //文字列s全体のハッシュ値 static pair concat(pair L,pair R,int RL) { //文字列L+Rのハッシュ値,RLはRの文字列の長さ while(pmo[0].size() RollingHash::pmo[2]; ll RollingHash::mul0,RollingHash::mul1; int contain(RollingHash& arg1, string& arg2) { int res = 0; if(arg1.sz < len(arg2)){ return res; } RollingHash RH; RH.init(arg2); rep(i,arg1.sz-len(arg2)+1){ if(arg1.hash(i,i+len(arg2)-1) == RH.hash(0,len(arg2)-1)){ res++; } } return res; } map mp; int main() { cin.tie(0); ios::sync_with_stdio(false); string s; cin >> s; RollingHash rh; rh.init(s); srep(i,1,11){ rep(j,len(s)-i+1){ mp[rh.hash(j,i+j-1)]++; } } int n; cin >> n; vs vec(n); int ans = 0; rep(i,n){ cin >> vec[i]; RollingHash cri; ans += mp[cri.hash(vec[i])]; } cout << ans << "\n"; return 0; }