题解 | #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;
    }
}

全部评论

相关推荐

蚂蚁 基架java (n+6)*16 签字费若干
点赞 评论 收藏
分享
无敌虾孝子:喜欢爸爸还是喜欢妈妈
点赞 评论 收藏
分享
11-18 15:57
门头沟学院 Java
最终归宿是测开:这个重邮的大佬在重邮很有名的,他就喜欢打92的脸,越有人质疑他,他越觉得爽😂
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务