Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
105810 | 赖原骐23140 | 地盘划分 | C++ | 通过 | 100 | 6 MS | 244 KB | 266 | 2023-10-08 13:26:02 |
#include<iostream> using namespace std; int n,m; int s=0; int squ(int x,int y) { if(x==y) { s++;return s; } else { s++; if(x>y) return squ(x-y,y); else return squ(y-x,x); } } int main() { cin>>n>>m; cout<<squ(n,m); return 0; }