题解 | #DNA序列#

DNA序列

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

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (sc.hasNextLine()) {
            String s = sc.nextLine();
            int split = Integer.parseInt(sc.nextLine());
            int maxIndex = 0;
            int maxCnt = 0;
            for (int i = 0; i < s.length() - split; i++) {
                int cnt = countCAndG(s.substring(i, i + split));
                if (cnt > maxCnt) {
                    maxCnt = cnt;
                    maxIndex = i;
                }
            }
            System.out.println(s.substring(maxIndex, maxIndex + split));
        }
    }

    private static int countCAndG(String sub) {
        char[] chs = sub.toCharArray();
        int count = 0;
        for (int i = 0; i < chs.length; i++) {
            if (chs[i] == 'C' || chs[i] == 'G') {
                count++;
            }
        }
        return count;
    }
}

全部评论

相关推荐

怎么起名字:早知道就不读书了,害得我送外卖还得扶眼镜
点赞 评论 收藏
分享
zYvv:双一流加大加粗再标红,然后广投。主要是获奖荣誉不够,建议开始不用追求大厂,去别的厂子刷下实习。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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