题解 | #坐标移动#正则匹配

坐标移动

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

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String s = in.nextLine();
        int x = 0, y = 0;
        String[] a = s.split(";");
         for(int i=0;i<a.length;i++) {
            if(a[i].matches("A\\d{1,2}")){
                x-=Integer.parseInt(a[i].substring(1));
            }else if(a[i].matches("W\\d{1,2}")) y+=Integer.parseInt(a[i].substring(1));
            else if(a[i].matches("D\\d{1,2}")) x+=Integer.parseInt(a[i].substring(1));
            else if(a[i].matches("S\\d{1,2}")) y-=Integer.parseInt(a[i].substring(1));
        }
        System.out.println(x + "," + y);
    }
}

全部评论

相关推荐

秋招投简历提醒助手:个人经验是,一般面二十场左右就会进入侃侃而谈阶段。我今年七月末的时候开始的第一次面试,都是很多不会,回复很慢。后面慢慢迭代,到九月中的时候基本上面啥说啥,很放松的状态
远程面试的尴尬瞬间
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

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