Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
8278 吴泽宇 求最大公约数(提高版) C++ 通过 100 0 MS 252 KB 145 2020-10-31 19:07:48

Tests(6/6):


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


测评信息: