2019-04-13 12:26发布 生成海报
int mul_mod(int a,int b,int n) { a=a%n;b=b%n; return (int)((long long)(a*b)%n) }