2019-04-14 08:44发布 生成海报
typedef long long ll; ll fastpow(ll x,ll y,ll mod) { ll ans=1; for(;y;y>>=1,x=x*x%mod) if(y&1) ans=ans*x%mod; return ans; }