题解 | #求最大连续bit数#

输入n个整数,输出其中最小的k个

http://www.nowcoder.com/practice/69ef2267aafd4d52b250a272fd27052c


import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        while (in.hasNext()) {
            int key = in.nextInt();
            String s = Integer.toBinaryString(key);


            String[] split = s.split("0");

            int count[] = new int[150];

            for (int i = 0; i < split.length; i++) {
                int length = split[i].length();
                count[i] = length;
            }
            Arrays.sort(count);

            System.out.println(count[count.length - 1]);

        }
    }
}
全部评论

相关推荐

12-04 19:53
已编辑
湖南文理学院 产品经理
牛客224543458号:他想找牛马,愿意疯狂加班的,因为要证明自己
点赞 评论 收藏
分享
喜欢吃蛋糕仰泳鲈鱼是我的神:字节可以找个hr 给你挂了,再放池子捞
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务