Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
149898 赖泓宇 两个数的最小公倍数 C++ Wrong Answer 1 MS 272 KB 417 2026-03-20 19:13:12

Tests(0/10):


Code:

#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=1;i<=899999999;i++){ if(a%i==0&&b%i==0){ cout<<i; break; } } }


Run Info:

------Input------
50 32
------Answer-----
800
------Your output-----
1