Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
12483 罗炜翰 土地分割 C++ 解答错误 0 0 MS 260 KB 206 2025-07-13 16:46:05

Tests(0/1):


#include<bits/stdc++.h> using namespace std; int g(int a, int b) { if(b==0){ return a; } else{ return g(b, a % b); } } int main() { int a,b; cin >>a>>b; cout<<g(a, b); return 0; }


测评信息: