| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 149901 | 赖泓宇 | 两个数的最小公倍数 | C++ | Wrong Answer | 1 MS | 268 KB | 417 | 2026-03-20 19:13:59 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ long long a,b; cin>>a>>b; for(int i=2;i<=899999999;i++){ if(a%i==0&&b%i==0){ cout<<i; break; } } }
------Input------
50 32
------Answer-----
800
------Your output-----
2