Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
106542 | zhangyuecai | 地盘划分 | C++ | 运行超时 | 0 | 1000 MS | 244 KB | 355 | 2023-10-12 14:01:07 |
#include <bits/stdc++.h> using namespace std; int jishu=0; void hf(int g,int l){ if(g!=l){ int s = floor(g*l - floor(sqrt(g*l))); g-=l; l=s/g; jishu++; } else cout << jishu+1; return; } int main(){ int a,b; cin >> a >> b; int i = max(a,b),o=min(a,b); while (1){ hf(i,o); } cout << jishu; return 0; }