题解 | #MP3光标位置#

MP3光标位置

https://www.nowcoder.com/practice/eaf5b886bd6645dd9cfb5406f3753e15

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int total = sc.nextInt();
        int index = 1;
        int pos = 1;
        String directives = sc.next();
        for (int i = 0; i < directives.length(); i++) {
            char ch = directives.charAt(i);
            switch (ch) {
                case 'U':
                    if (index > 1) {
                        index -= 1;
                        if (pos == 1) {
                            pos = 1;
                        } else {
                            pos -= 1;
                        }
                    } else if (index == 1) {
                        index = total;
                        pos = Math.min(total, 4);
                    }
                    break;
                case 'D':
                    if (index == total) {
                        index = 1;
                        pos = 1;
                    } else if (index < total) {
                        index += 1;
                        if (pos == 4 || pos == total) {
                            pos = Math.min(total, 4);
                        } else {
                            pos += 1;
                        }
                    }
                    break;
            }
        }
        for (int i = 0, j = pos - 1; i < pos - 1; i++, j--) {
            System.out.print(index - j + " ");
        }
        for (int i = pos, j = 0; i <= Math.min(total, 4); i++, j++) {
            System.out.print(index + j + " ");
        }
        System.out.println();
        System.out.println(index);
    }
}

全部评论

相关推荐

10-20 15:26
门头沟学院 Java
桥头牛油火锅:这个比例不正常,简历的话项目经历放中间,项目功能分点可以再明确点,前面加“·”或者“1 2 3”,另外简历上的照片可以去外面摄影店拍一下,以后也会用到的,hr筛人也是多少会看的,毕竟世界是一个巨大的卡颜局嘛,还有有些hr由于消息太多可能没看到,后面可能会回来找你,要简历的还会多一点,我也是普2本,比例大致是600:90:15:3,当然我实力不太够,拿的offer比较少,慢慢来吧
点赞 评论 收藏
分享
青春运维少年不会梦到...:实习大王
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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