关卡地址#
解决方案:#
思路:#

提示:试试更改url
从图中容易看出,需要求出 \( 2^{38} \) = ?
得到的值就是下一关的地址
代码:#
print(2**38)[math]::pow(2,38)package main
import (
"fmt"
"math"
)
func (c *Challenge) Challenge000() {
// fmt.Println(int64(math.Pow(2,38)))
fmt.Printf("%.f\n",math.Pow(2,38))
}