Run ID Author Problem Lang Verdict Score Time Memory Code Length Submit Time
8278 吴泽宇 求最大公约数(提高版) C++ Accepted 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; }


Judgement Protocol: