Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
55983 laichihao 求最大公约数问题 C++ 通过 1 MS 248 KB 149 2024-11-08 17:59:32

Tests(2/2):


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


测评信息: