Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
4807 张文曦 按班分组 C++ Accepted 0 MS 256 KB 193 2024-09-21 14:03:20

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