solution.md 1.3 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1
# 分数
F
fix bug  
feilong 已提交
2

每日一练社区's avatar
每日一练社区 已提交
3 4 5 6 7
1/1 + 1/2 + 1/4 + 1/8 + 1/16 + … 每项是前一项的一半,如果一共有20项,求这个和是多少,结果用分数表示出来。  
类似:3/2  
当然,这只是加了前2项而已。分子分母要求互质。  

## aop
F
fix bug  
feilong 已提交
8

每日一练社区's avatar
每日一练社区 已提交
9
### before
F
fix bug  
feilong 已提交
10

每日一练社区's avatar
每日一练社区 已提交
11 12 13 14 15
```cpp
#include <bits/stdc++.h>
using namespace std;
```
### after
F
fix bug  
feilong 已提交
16

每日一练社区's avatar
每日一练社区 已提交
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
```cpp
int gcd(long a, long b)
{
    if (b == 0)
        return a;
    return gcd(b, a % b);
}
int main()
{
    cout << gcd(pow_2(20) - 1, pow_2(19)) << endl;
    cout << pow_2(20) - 1 << "/" << pow_2(19) << endl;
}
```

## 答案
F
fix bug  
feilong 已提交
32

每日一练社区's avatar
每日一练社区 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
```cpp
long pow_2(int b)
{
    long x = 2;
    long res = 1;
    while (b > 0)
    {
        if (b & 1)
            res *= x;
        b >>= 1;
        x = x * x;
    }
    return res;
}
```
## 选项

F
fix bug  
feilong 已提交
50

每日一练社区's avatar
每日一练社区 已提交
51
### A
F
fix bug  
feilong 已提交
52

每日一练社区's avatar
每日一练社区 已提交
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
```cpp
long pow_2(int b)
{
    long x = 2;
    long res = 1;
    while (b > 0)
    {
        if (b & 1)
            res *= x;
        b <<= 1;
        x = x * x;
    }
    return res;
}
```

### B
F
fix bug  
feilong 已提交
70

每日一练社区's avatar
每日一练社区 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
```cpp
long pow_2(int b)
{
    long x = 2;
    long res = 1;
    while (b > 0)
    {
        if (b && 1)
            res *= x;
        b <<= 1;
        x = x * x;
    }
    return res;
}
```

### C
F
fix bug  
feilong 已提交
88

每日一练社区's avatar
每日一练社区 已提交
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
```cpp
long pow_2(int b)
{
    long x = 2;
    long res = 1;
    while (b > 0)
    {
        if (b & 1)
            res = x;
        b >>= 1;
        x = x * x;
    }
    return res;
}
```