题解 | #坐标移动#

坐标移动

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

# 2024年10月29日   周二   下午16:54

s = input().split(";")  # A10;S20;W10;D30;X;A1A;B10A11;;A10;
start = [0, 0]
for i in s:
    if not 2 <= len(i) <= 3:
        continue
    else:
        try:
            d = i[0]
            step = int(i[1:])
            if d in ["A", "D", "W", "S"]:
                if 0 <= step <= 99:
                    if d == "A":
                        start[0] -= step
                    elif d == "D":
                        start[0] += step
                    elif d == "W":
                        start[1] += step
                    elif d == "S":
                        start[1] -= step

        except:
            continue
print(str(start[0]) + "," + str(start[1]))

全部评论

相关推荐

09-16 14:01
井冈山大学 Java
肖先生~:兄弟们,我发的她都点赞了,但是就是不给我微信
秋招被确诊为……
点赞 评论 收藏
分享
在看牛客的社畜很积极:身高体重那一行信息去掉,学校那一行的信息放上面,找半天都没找到你是哪个学校什么专业的
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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