【NOIP2003】【Luogu1044】栈

problem

solution

codes

#include<iostream>
using namespace std;
int main(){
    int n;
    unsigned long long f=1;
    cin>>n;
    for(int i=1;i<=n;i++) f = f*(i*4-2)/(i+1);
    cout<<f;
    return 0;
}
posted @ 2018-05-23 12:47  gwj1139177410  阅读(131)  评论(0编辑  收藏  举报
选择