2 条题解

  • 1
    @ 2023-7-27 20:43:57

    #include using namespace std; int main() { int m,n,a,b; scanf("%d %d",&m,&n); a=m*n; int r=m%n; while(r!=0) { m=n; n=r; r=m%n; } b=a/n; printf("%d",b); return 0; }

    • 0
      @ 2024-7-28 16:26:53

      #include<bits/stdc++.h> using namespace std; int main() { int a,b,d; cin>>a>>b; d=a; while(d%b!=0) d=d+a; cout<<d<<endl; return 0; }

      • 1

      信息

      ID
      337
      时间
      1000ms
      内存
      256MiB
      难度
      1
      标签
      (无)
      递交数
      149
      已通过
      115
      上传者