标签:black lld enc mod can div out online inpu
1008 N的阶乘 mod P(51NOD)
两个数N,P,中间用空格隔开。(N < 10000, P < 10^9)
输出N! mod P的结果。
10 11
10
#include <cstdio> #define LL long long LL n , p ; LL result ; // 由于是求 阶乘求模 所以别忘了 开 LL 类型的数据 int main(){ while(~scanf("%lld%lld" , &n , &p)){ result = 1 ; for(int i=1 ; i<=n ; i++){ result = result * i % p ; } printf("%lld\n" , result) ; } return 0 ; }
标签:black lld enc mod can div out online inpu
原文地址:http://www.cnblogs.com/yi-ye-zhi-qiu/p/7553404.html