Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
149185 杜雨轩 按班分组 C++ Accepted 0 MS 268 KB 164 2026-03-07 17:39:41

Tests(10/10):


Code:

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