Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
4808 温翰麒 按班分组 C++ Accepted 0 MS 268 KB 197 2024-09-21 14:05:43

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; }