1 Star 0 Fork 1

陈鹏/leecode with labuladong

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
372.超级次方.cpp 692 Bytes
一键复制 编辑 原始数据 按行查看 历史
陈鹏 提交于 2022-07-25 18:20 . 小游戏
/*
* @lc app=leetcode.cn id=372 lang=cpp
*
* [372] 超级次方
*/
// @lc code=start
class Solution {
public:
int base = 1337;
int myPower(int a, int k) {
if (k == 0) return 1;
a %= base;
if (k % 2 == 1) {
return (a*myPower(a, k - 1)) % base;
} else {
int sub = myPower(a, k / 2);
return sub * sub % base;
}
}
int superPow(int a, vector<int>& b) {
if (b.empty()) return 1;
int last = b.back();
b.pop_back();
int part1 = myPower(a, last);
int part2 = myPower(superPow(a, b), 10);
return (part1 * part2) % base;
}
};
// @lc code=end
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Chan1998/leecode-with-labuladong.git
git@gitee.com:Chan1998/leecode-with-labuladong.git
Chan1998
leecode-with-labuladong
leecode with labuladong
master

搜索帮助