贝壳笔试...我怕是有毒

本地IDE测试都跑了...提交0AC,写的测试用例输出为空...用不明白的在线编辑器
public static void main(String args[]){
       // Scanner n = new Scanner(System.in);
        Scanner firstInt = new Scanner(System.in);
       Scanner in  = new Scanner(System.in);
        int n = firstInt.nextInt();
        if (n == 0) {
            System.out.println(0);
        }
        else if (n == 1){
            int[] b = new int[n];
            for (int i = 0; i < b.length; i++) {
                b[i] = in.nextInt();
            }
            System.out.println(b[0]);
        }

        else {
       int[] b = new int[n];
        for (int i = 0; i < b.length; i++) {
            b[i] = in.nextInt();
        }
       int first = 0;
       int scond = 0;
        int temp = 10000;
       int a = 0;
        for (int i = 1; i < b.length; i++) {
            int firstnum = b[i-1];
            int scondnum = b[i];
            a = Math.abs(firstnum - scondnum);
            if(a < temp){
                temp = a;
                first = i-1;
                scond = i;
            }


//            if (a <= temp){
//
//            }
        }
        System.out.println(b[first] +" " + b[scond]);



    }}
public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        //arr数组表示输入的序列
        int[] arr = new int[11111];
        //longest数组中存放上升序列的长度,longest[i]表示以arr[i]结尾的子序列的最大长度
        int[] longest = new int[11111];
        for (int i = 1; i <= n; i++) {
            int a = sc.nextInt();
            arr[i] = a;
        }

        int result = -1;

        for (int i = 1; i <= n; i++) {
            longest[i] = 1;
            for (int j = 1; j < i; j++) {
                if (arr[i] > arr[j] && (longest[j] + 1 > longest[i])) {
                    longest[i] = longest[j] + 1;
                }
            }
            result = Math.max(result, longest[i]);
        }
        System.out.println(result);
    }
public static void main(String args[]){
            Scanner firstInt = new Scanner(System.in);
            Scanner in  = new Scanner(System.in);
            int n = firstInt.nextInt();
            int[] array = new int[n];
            for (int i = 0; i < array.length; i++) {
                array[i] = in.nextInt();
            }
           //int[] array = {1,1,1,1,1};
           int count = 0;
            for (int i = 0; i < array.length; i++) {
                for (int j = i; j < array.length - 1; j++) {
                    if (array[i] > array[j]){
                        if (array[i] * 0.9 <= array[j])
                        {
                            count++;
                        }
                    }
                    if (array[i] < array[j]){
                        if (array[i]  >= array[j]* 0.9)
                        {
                            count++;
                        }
                    }
                    if (array[i] == array[j]){
                        count++;
                    }
                }
            }
            System.out.println(count);
        }




#笔试题目#
全部评论
同学很强,可以试试我们部门呀! 我们是淘宝基础平台部,是真 * 阿里最核心的部门!但是因为校招起步太晚,到现在还没收到几份简历!我们部门今年有十几个校招hc,已经是淘宝的hc大户了!目前投递简历可以直推到部门,随时帮忙查看面试进度! 已经投递过其他部门的同学就不要发简历给我拉!投不进去的! 招聘职位:JAVA研发工程师、C++研发工程师、数据研发工程师、客户端开发工程师、数据分析师 简历请发至邮箱 lanya.sly@alibaba-inc.com,收到后就立即帮您内推!
点赞 回复 分享
发布于 2019-08-10 21:46
如果是开发的话只有第一题需要hasNext,我觉得问题出在楼主的类名没有改成class Main。辣鸡赛码只能识别叫Main的类,你要是改其他名字它就不执行所以没输出了
点赞 回复 分享
发布于 2019-08-10 21:36
赛码编辑器是把所有测试用例一次性给你的,所以你需要在main里面加上这样一句: while(scanner.hasNext){     //你的代码 } 没有这个,就算代码是对的,也是0 AC。 所以,如果笔试之前熟悉了赛码环境,就不会出现这个问题...
点赞 回复 分享
发布于 2019-08-10 21:10
一开始第一题的main方法忘了填参数,调好久都不知道😂😂
点赞 回复 分享
发布于 2019-08-10 21:38

相关推荐

已注销:测开吗?网易给的有点少 建议干三个月跳槽 然后来一段一整年的大厂 然后再找一段大厂转正实习无敌了
点赞 评论 收藏
分享
评论
1
2
分享
牛客网
牛客企业服务