Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
117150 | 吴诗涵 | 阿克曼函数 | C++ | Accepted | 174 MS | 400 KB | 470 | 2025-04-13 19:18:26 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int out(int m,int n){ if(m==0){ return n+1; } else if(m>0&&n==0){ return out(m-1,1); } else if(n>0){ return out(m-1,out(m, n-1)); } } int main(){ long long n,v; cin>>n>>v; cout<<out(n,v); return 0; }