1 条题解
-
3
本蒟蒻直接发递归做法好吧
#include<bits/stdc++.h> #define int long long #define LL long long #define USl unsigned long long using namespace std; int AddWithoutArithmetic(int num1, int num2) { if(num2 == 0) return num1; int SM = num1 ^ num2; int carry = (num1 & num2) << 1; return AddWithoutArithmetic(SM, carry); } signed main(){ int a,b; cin>>a>>b; cout<<AddWithoutArithmetic(a,b); }
- 1
信息
- ID
- 1
- 时间
- 1000ms
- 内存
- 64MiB
- 难度
- 1
- 标签
- 递交数
- 44
- 已通过
- 33
- 上传者