Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
4775 郑元泰 按班分组 C++ Accepted 0 MS 264 KB 191 2024-09-15 23:14:30

Tests(10/10):


Code:

#include<iostream> using namespace std; int main(){ int a,b,c=-1; cin>>a>>b; while(c!=0){ c=a%b; a=b; b=c; } cout<<a; return 0; }