Run ID Author Problem Lang Verdict Score Time Memory Code Length Submit Time
9027 沈文佳 求最大公约数(提高版) C++ Compile Error 0 0 MS 0 KB 162 2020-11-07 21:36:04

Tests(0/0):


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


Judgement Protocol: