1 条题解
-
2lichengjun LV 10 @ 2023-3-18 21:30:20
递归用着用着就出问题了,改用while时才发现问题,懒得改了
#include<iostream>//cin cout #include<iomanip>//setprecision setw #include<stdio.h>//scanf printf #include<math.h>//ceil floor fabs sqrt round pow #include<string>//string #include<string.h>//memset #include<sstream>//stringsream #include<algorithm>//min max using namespace std; typedef long long ll; int n,m,cnt; int main(){ cin>>n>>m; while(n&&m){ if(n>m){ cnt++; if(n==m)break; n-=m; }else if(n<m){ cnt++; if(n==m)break; m-=n; }else { cnt++; break; } } cout<<cnt; return 0; }
- 1
信息
- ID
- 1930
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 7
- 标签
- 递交数
- 304
- 已通过
- 74
- 上传者