看到这么大的数字就知道考高精度+快速幂+乘法。 高精度快速幂: vector<int> power(int n) {//快速幂 vector<int> ans = {1}; vector<int> base = {2}; while(n) { &nbs...