你谷python不给无线栈的吗

P1001 A+B Problem

Ynoi @ 2020-01-31 23:34:36

Rt

def dfs(x): 
    p = 0
    if(x == 0): 
        return
    dfs(x-1)
s = input().split()
a = int(s[0])
b = int(s[1])
dfs(10000)
print(a+b)

这玩意交A+B都RE


by Ynoi @ 2020-01-31 23:38:01

打错字了

无线 -> 无限


by 深度优先搜索 @ 2020-01-31 23:42:07

当然不给啊.....

否则Python 逆天了???


by Ynoi @ 2020-01-31 23:51:14

@深度优先嗖索 您随便找道题python很容易被卡常的,哪来逆天(最多高精题可以水水


by 星际联盟 @ 2020-02-07 18:52:20

测试题目 https://www.luogu.com.cn/problem/U104988


|