Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
87427 Kevin 最大公约数 C++ Accepted 1 MS 268 KB 167 2024-08-10 10:49:32

Tests(1/1):


Code:

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