Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
105517 | 李承瀚 | 地盘划分 | C++ | 通过 | 100 | 6 MS | 248 KB | 209 | 2023-10-07 13:10:33 |
#include<iostream> using namespace std; int s(int a,int b) { if(a==b) return 1; if(a>b) return 1+s(a-b,b); if(a<b) return 1+s(a,b-a); } int main() { int a,b; cin>>a>>b; cout<<s(a,b)<<endl; }