涅盘重升
涅盘重升
全部文章
题解
归档
标签
去牛客网
登录
/
注册
涅盘重升的博客
全部文章
/ 题解
(共1篇)
题解 | #走方格的方案数#
递归```py def f(n,m): if n == 0 or m==0: return 1 else: return f(n-1,m)+f(n,m-1) while True: try: n,m = map(int,input().split()) print(f(n,m)) except: b...
Python3
递归
2021-10-23
0
319