题解 | #坐标移动#

坐标移动

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

import java.util.*;

public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int[] res = new int[]{0,0};
        List<String> str = new ArrayList<String>();
        while(sc.hasNext()){
            String s = sc.nextLine();
            int slen = s.length();
            StringBuffer sb = new StringBuffer();
            for(int k = 0;k < slen;k++){
                if(s.charAt(k) != ';'){
                    sb.append(s.charAt(k));
                }else{
                    str.add(sb.toString());
                    sb = new StringBuffer();
                }
            }
            int len = str.size();
            for(int i = 0;i < len;i++){
                if(str.get(i) == null){
                    continue;
                }
                int m = str.get(i).length();
                if(m == 0 || m == 1) continue;
                char ch = str.get(i).charAt(0);
                if(!(ch == 'A' || ch == 'W' || ch == 'S' || ch == 'D')) continue;
                int count = 0;
                for(int j = 1;j < m;j++){
                    if(!Character.isDigit(str.get(i).charAt(j))){
                        count = 0;
                        break;
                    }
                    count = count * 10 + str.get(i).charAt(j) - '0';
                }
                if(ch == 'A'){
                    res[0] -= count;
                }else if(ch == 'D'){
                    res[0] += count;
                }else if(ch == 'W'){
                    res[1] += count;
                }else if(ch == 'S'){
                    res[1] -= count;
                }
            }
            System.out.print(res[0] + "," + res[1]);
        }
    }
}


全部评论

相关推荐

10-28 11:04
已编辑
美团_后端实习生(实习员工)
一个2人:我说几个点吧,你的实习经历写的让人觉得毫无含金量,你没有挖掘你需求里的 亮点, 让人觉得你不仅打杂还摆烂。然后你的简历太长了🤣你这个实习经历看完,估计没几个人愿意接着看下去, sdk, 索引这种东西单拎出来说太顶真了兄弟,好好优化下简历吧
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务