首页 > 阿里笔试,第一题AC0.5,大家帮我看看,哪里错了
头像
少年的宝玉
编辑于 2020-08-14 21:47
+ 关注

阿里笔试,第一题AC0.5,大家帮我看看,哪里错了

import java.util.*;  public class Main2 { public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);  int N = sc.nextInt();  int d = sc.nextInt();  sc.nextLine();  List<Integer> dec = new ArrayList<>();  // HashSet<Integer> set = new HashSet<>();  int max = 0;  //双层矩阵  for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { int m = sc.nextInt();  //set.add(m);  max = Math.max(max, m);  dec.add(m);  }
            sc.nextLine();  } int count = 0;  for (int num : dec) { if ((max - num) % d == 0) {
                count += (max - num) / d;  } else {
                count = -1;  break;  }
        }
        System.out.println(count);  }
}

全部评论

(1) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

历年真题 真题热练榜 24小时
技术(软件)/信息技术类
查看全部

近期精华帖

热门推荐