Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
8283 王循 求最大公约数(提高版) C++ 通过 100 0 MS 248 KB 138 2020-10-31 19:08:37

Tests(6/6):


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


测评信息: