Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
109749 周歆童(初一23 二叉树问题 C++ 通过 100 0 MS 244 KB 382 2023-11-11 10:21:27

Tests(3/3):


//test #include<bits/stdc++.h> using namespace std; long long n,ans[25]={ 1, 2, 5, 14, 42, 132, 429, 1430, 4862, 16796, 58786, 208012, 742900, 2674440, 9694845, 35357670, 129644790, 477638700, 1767263190, 6564120420, 24466267020, 91482563640, 343059613650, 1289904147324, 4861946401452 }; int main(){ while(cin>>n)cout<<ans[n-1]<<endl; return 0; }


测评信息: