首页 > 其他 > 详细

Codeforces Round #422 A

时间:2017-07-13 22:30:22      阅读:268      评论:0      收藏:0      [点我收藏+]

I‘m bored with life

题意:给一个a,b,求 gcd(a!,b!),输出min(a,b)! 就可以了

AC代码:

#include<bits/stdc++.h>
#include "iostream"
#include "string.h"
#include "stack"
#include "queue"
#include "string"
#include "vector"
#include "set"
#include "map"
#include "algorithm"
#include "stdio.h"
#include "math.h"
#define ll long long
#define bug(x) cout<<x<<" "<<"UUUUU"<<endl;
#define mem(a) memset(a,0,sizeof(a))
#define mp(x,y) make_pair(x,y)
#define pb push_back
const long long INF = 1e18+1LL;
const int inf = 1e9+1e8;
using namespace std;
const int N=1e5+100;

ll a,b,ans=1;
int main(){
    cin>>a>>b;
    for(int i=2; i<=min(a,b); ++i){
        ans*=i;
    }
    cout<<ans<<endl;
    return 0;
}

 

Codeforces Round #422 A

原文:http://www.cnblogs.com/max88888888/p/7163254.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!