Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
72799 sh25_shenpy 求两个数的最大公约数 C++ 通过 0 MS 248 KB 167 2025-11-02 18:15:24

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main(){ int day, money; cin >> day>>money; int w=__gcd(day,money); cout << w; return 0; }


测评信息: