Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
133775 杨启宏 15求两个数的最大公约数 C++ Accepted 2 MS 276 KB 152 2025-10-21 19:00:13

Tests(10/10):


Code:

#include<algorithm> #include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<__gcd(a,b); }