Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
104814 林泽豪 地盘划分 C++ 通过 100 5 MS 248 KB 180 2023-10-04 09:52:08

Tests(10/10):


#include<iostream> using namespace std; int main(){ int a,b,v=0; cin>>a>>b; while(a!=b){ if(a>b){ a-=b; } else{ b-=a; } v++; } cout<<v+1; return 0; }


测评信息: