题解 | #坐标移动#

坐标移动

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

coor = input().split(";")

x , y = 0 , 0

for i in range(len(coor)):

    try:

        dis = int(coor[i][1:])

        if coor[i][0] == 'A':

            x -= dis

        elif coor[i][0] == 'D':

            x += dis

        elif coor[i][0] == 'S':

            y -= dis

        elif coor[i][0] == 'W':

            y += dis

        else:

            dis = 0

    except:

        dis = 0

print(x,',',y,sep='')

全部评论

相关推荐

躺尸修仙中:因为很多92的也去卷中小厂,反正投递简历不要钱,面试不要钱,时间冲突就推,不冲突就面试积累经验
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务