zoukankan      html  css  js  c++  java
  • 【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;
    }
    
  • 相关阅读:
    3-8
    3-7
    3-5
    3-4
    3-3
    3-2
    3-1
    2-11
    2-10
    2-9
  • 原文地址:https://www.cnblogs.com/gwj1314/p/9444833.html
Copyright © 2011-2022 走看看