百度测开0924笔试题--Python

n,m = list(map(int, input().strip().split(" ")))
qipan = []
for _ in range(n):
    qipan.append(list(input().strip()))
x,y = list(map(int, input().strip().split(" ")))

res = 0
def move(qipan, x, y, tmp=None):
    global res
    if x < 0 or x > n or y < 0 or y > m:
        return 
    k = qipan[x][y]
    if k == 'E':
        qipan[x][y] = '.'
        move(qipan, x, y+1, 'E')
    elif k == 'N':
        qipan[x][y] = '.'
        move(qipan, x-1, y, 'N')
    elif k == 'W':
        qipan[x][y] = '.'
        move(qipan, x, y-1, 'W')
    elif k == 'S':
        qipan[x][y] = '.'
        move(qipan, x+1, y, 'S')
    elif k == '.':
        if tmp == 'E':
            move(qipan, x, y+1, tmp)
        elif tmp == 'N':
            move(qipan, x-1, y, tmp)
        elif tmp == 'W':
            move(qipan, x, y-1, tmp)
        elif tmp == 'S':
            move(qipan, x+1, y, tmp)
#         res += 1
    res += 1
res = move(qipan, x, y)
print(res)
#笔试题目##百度##测试开发工程师#
全部评论
def fun():     a,b,n = list(map(int, input().strip().split(' ')))     if a == 0 or b == 0: return 0      ji = a*b     gewei = ji%10     shiwei = ji//10     jinwei = 0     res = gewei     if gewei + shiwei >= 10:         for i in range(n-1):             res += ((gewei + shiwei) % 10 + jinwei)             jinwei = (gewei + shiwei) // 10         res += (shiwei + jinwei)         return res              return n*(gewei+shiwei) 第一题 91%
点赞 回复 分享
发布于 2019-09-24 22:28
第一题Python写了这么长的题目,我就知道我这个水平的不用看了
点赞 回复 分享
发布于 2019-09-24 22:30
你这第二题好像不对吧,根本跑不出来
点赞 回复 分享
发布于 2020-05-26 10:28

相关推荐

三年之期已到我的offer快到碗里来:9硕都比不上9本
点赞 评论 收藏
分享
2 7 评论
分享
牛客网
牛客企业服务