0_0_19231107_22187.cpp:10:1: error: '__int64ll' does not name a type
__int64ll M=19880502ll,A[6],B[6][9999];
^
0_0_19231107_22187.cpp:11:21: error: expected constructor, destructor, or type conversion before '(' token
int n,v[9999];ll gcd(ll a,ll b){ if(!b)return a; return gcd(b,a%b);}ll egcd(ll a,ll b,ll &x,ll &y){ if(!b){x=1;y=0;return a;} ll d=egcd(b,a%b,x,y),t=x; x=y; y=t-a/b*y; return d;}ll Pow(ll a,ll b){ ll r=1; while(b) { if(b&1)r=r*a%M; a=a*a%M; b>>=1; } return r;}ll sol(
^
0_0_19231107_22187.cpp:11:76: error: expected constructor, destructor, or type conversion before '(' token
int n,v[9999];ll gcd(ll a,ll b){ if(!b)return a; return gcd(b,a%b);}ll egcd(ll a,ll b,ll &x,ll &y){ if(!b){x=1;y=0;return a;} ll d=egcd(b,a%b,x,y),t=x; x=y; y=t-a/b*y; return d;}ll Pow(ll a,ll b){ ll r=1; while(b) { if(b&1)r=r*a%M; a=a*a%M; b>>=1; } return r;}ll sol(
^
|