1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| #include <iostream> #include <algorithm>
using namespace std;
typedef long long LL;
LL get(int a, int b) { LL res = 1; while (b -- ) res *= a; return res; }
int main() { int n, k; cin >> k >> n;
LL res = 0; for (int i = 0; i < 20; i ++ ) if (n >> i & 1) res += get(k, i);
cout << res << endl;
return 0; }
|