题解 | #坐标移动#

坐标移动

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

#20240911
# A=左,D=右,W=上,S=下
# A10;S20;W10;D30;X;A1A;B10A11;;A10;
s = input().split(';')
#print(s)
start = [0,0]

for i in s:
    if not  2 <= len(i) <= 3:
        continue
    else: 
        try:
            step = int(i[1:])
            if i[0] in ['A','S','W','D']:
                if 0 <= step <= 99:
                    if i[0] == 'A':
                        start[0] -= step
                    elif i[0] == 'S':
                        start[1] -= step
                    elif i[0] == 'W':
                        start[1] += step
                    elif i[0] == 'D':
                        start[0] += step
        except:
            continue
print(str(start[0])+','+str(start[1]))



        

全部评论

相关推荐

10-11 14:44
济南大学 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务