题解 | #坐标移动#

坐标移动

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

location = [0,0]
for i in input().split(';'):
    if len(i)<=3:
        try:
            if i[0]=='A':
                location[0] -= int(i[1::])
            elif i[0]=='D':
                location[0] += int(i[1:])
            elif i[0]=='W':
                location[1] += int(i[1:])
            elif i[0]=='S':
                location[1] -= int(i[1:])
        except:
            continue
print(f'{location[0]},{location[1]}')

全部评论

相关推荐

不愿透露姓名的神秘牛友
10-05 10:13
已编辑
HHHHaos:让这些老登来现在秋招一下,简历都过不去
点赞 评论 收藏
分享
评论
1
1
分享
牛客网
牛客企业服务