Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
73826 sh25_shenpy 求最大公约数问题 C++ 通过 0 MS 252 KB 146 2025-11-16 20:27:39

Tests(2/2):


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


测评信息: