Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
105143 | 毛泓博(做题专用,大号Fess) | 地盘划分 | C++ | 通过 | 100 | 9 MS | 248 KB | 234 | 2023-10-05 11:05:42 |
#include<bits/stdc++.h> using namespace std; int f(int n,int m) { int s=0; if(max(n,m)==n) n-=m; else m-=n; if(n>0&&m>0) s+=f(n,m); s++; return s; } int main() { int n,m; cin>>n>>m; cout<<f(n,m); return 0; }