题解 | #MP3光标位置#

MP3光标位置

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

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        while (in.hasNextLine()) {
            int n = Integer.parseInt(in.nextLine());
            String list = in.nextLine();
            int index = 1;
            int pageIndex = 1;
            int pageSize;
            if (n >= 4) {
                pageSize = 4;
            } else {
                pageSize = n;
            }
            for (int i = 0; i < list.length(); i++) {
                switch (list.charAt(i)) {
                    case 'U':
                        if (index == 1) {
                            index = n;
                            pageIndex = pageSize;
                        } else {
                            index--;
                            if (pageIndex != 1) {
                                pageIndex--;
                            }
                        }
                        break;
                    case 'D':
                        if (index == n) {
                            index = 1;
                            pageIndex = 1;
                        } else {
                            index++;
                            if (pageIndex != pageSize) {
                                pageIndex++;
                            }
                        }
                }
            }
            for (int i = index - pageIndex+1; i < index - pageIndex + pageSize+1; i++) {
                System.out.print(i + " ");
            }
            System.out.println();
            System.out.println(index);
        }
    }
}

全部评论

相关推荐

10-15 15:00
潍坊学院 golang
跨考小白:这又不是官方
投递拼多多集团-PDD等公司10个岗位
点赞 评论 收藏
分享
10-15 09:13
已编辑
天津大学 soc前端设计
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务