Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
105563 | 梁颢城 | 地盘划分 | C++ | 通过 | 100 | 0 MS | 252 KB | 367 | 2023-10-07 13:26:20 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b; scanf("%d%d",&a,&b); int cnt = 0; if(a == b){ printf("1"); return 0; } while(a != 0 && b != 0){ if(a > b){ cnt += a/b; a = a%b; }else if(b > a){ cnt += b/a; b = b%a; } } printf("%d",cnt); return 0; }