标签:cout bit 知识点 std href test namespace end 简单的
#include <bits/stdc++.h>
using namespace std;
#define ll long long
int main()
{
int n,mod;
cin>>n>>mod;
ll ans=1;
if(n == 1 || n == 0){
ans = 1%mod;
}
else if(n == 2){
ans = n%mod;
}
else if( n == 3){
for(int i=1;i<=720;i++){
ans *= i;
ans %= mod;
}
}
else{
ans = 0;
}
cout<<ans<<endl;
return 0;
}
标签:cout bit 知识点 std href test namespace end 简单的
原文地址:https://www.cnblogs.com/QFNU-ACM/p/12812646.html