TLE和RE的看这里

P2293 [HNOI2004] 高精度开根

过了谢谢
by colazcy @ 2019-08-22 09:08:52


@[erge](/user/29061) ```python import math a = input() b = input() c = 1 / a d = pow(b,c) print(d) ``` 为什么RE呢?
by ___njr___ @ 2023-03-16 20:48:46


|