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


Judgement Protocol: