Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
8457 张承志 求最大公约数(提高版) C++ 通过 100 0 MS 248 KB 149 2020-10-31 20:18:16

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; }


测评信息: