Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
56018 luchenhao2024 最大公约数、最小公倍数 C++ 通过 0 MS 256 KB 183 2024-11-08 19:28:56

Tests(1/1):


#include<iostream> #include<algorithm> using namespace std; int main(){ int a,b; cin>>a>>b; int m=__gcd(a,b); int n=a*b/m; cout<<m<<","<<n; return 0; }


测评信息: