1 Star 0 Fork 0

ZenQy/project_euler

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
016.go 507 Bytes
一键复制 编辑 原始数据 按行查看 历史
ZenQy 提交于 2016-12-28 23:07 . rename flie
// 16
package main
import (
"fmt"
)
func main() {
fmt.Println(multiple(1000))
}
func multiple(n int) int {
s := make([]int, 1)
s[0] = 1
for i := 0; i < n; i++ {
for j := 0; j < len(s); j++ {
s[j] *= 2
}
for j := 0; j < len(s); j++ {
if s[j] >= 1e10 {
if j+1 < len(s) {
s[j+1] += s[j] / 1e10
} else {
s = append(s, s[j]/1e10)
}
s[j] %= 1e10
}
}
}
ss := 0
for i := 0; i < len(s); i++ {
for s[i] > 0 {
ss += s[i] % 10
s[i] /= 10
}
}
return ss
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ApocalypseQin/project_euler.git
git@gitee.com:ApocalypseQin/project_euler.git
ApocalypseQin
project_euler
project_euler
master

搜索帮助