题解 | #坐标移动#

坐标移动

https://www.nowcoder.com/practice/119bcca3befb405fbe58abe9c532eb29

##牛客网的python 3不支持match语句,这个程序还需要进一步修改

def zuobiao(*loo):

    curpoint = [0,0]

    for ll in loo:

        match ll[0]:

            case 'A':

                curpoint[0] -= int(ll[1:])

            case 'D':

                curpoint[0] += int(ll[1:])

            case 'S':

                curpoint[1] -= int(ll[1:])

            case 'W':

                curpoint[1] += int(ll[1:])

    return curpoint

while True:

    try:

        s = list(input().split(';'))

        news = []

       

        #ZIMU = 'A' or 'D' or 'S' or 'W'

        #c[0] == 'A' or c[0] == 'D' or c[0] == 'S' or c[0] == 'W'

        for c in s:

            if len(c) == 3 and (c[0] == 'A' or c[0] == 'D' or c[0] == 'S' or c[0] == 'W') and c[1].isdigit() and c[2].isdigit():

                news.append(c)

        #print(news)

        #print(s)

        #s = ['A10','S20','W10','D30','A10']

        #for s

        res = zuobiao(*news)

        #print(str(res))

        #print(len(res))

        print(','.join(map(str,res)))

    except:

        break

全部评论

相关推荐

昨天 00:11
已编辑
广东工业大学 算法工程师
避雷深圳  yidao,试用期 6 个月。好嘛,试用期还没结束,就直接告诉你尽快找下一家吧,我谢谢您嘞
牛客75408465号:笑死,直属领导和 hr 口径都没统一,各自说了一些离谱的被裁理由,你们能不能认真一点呀,哈哈哈哈哈😅😅😅
点赞 评论 收藏
分享
勇敢的联想人前程似锦:如果我是你,身体素质好我会去参军,然后走士兵计划考研211只需要200多分。
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务