0

我写了一个很短的程序来解决一个在线评委的简单编程竞赛问题(http://acm.sgu.ru/problem.php?contest=0&problem=184),但由于某种原因,我在 21 日遇到了运行时错误测试(它没有具体说明运行时错误是什么)。所以我重写了代码,它现在没有给出运行时错误,但我不明白为什么这段代码应该工作而原来的代码没有。这是工作代码:

Scanner scan = new Scanner(System.in);
int[] arr1 = new int[3];
int[] arr2 = new int[3];
for (int i = 0; i <= 2; i++) arr1[i] = scan.nextInt();
for (int i = 0; i <= 2; i++) arr2[i] = scan.nextInt();
System.out.println(Math.min(arr1[0]/arr2[0], Math.min(arr1[1]/arr2[1], arr1[2]/arr2[2])));

这是非工作代码:

BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
String[] arr1 = in.readLine().split(" ");
String[] arr2 = in.readLine().split(" ");
int flour = Integer.parseInt(arr1[0])/Integer.parseInt(arr2[0]);
int milk = Integer.parseInt(arr1[1])/Integer.parseInt(arr2[1]);
int cabbage = Integer.parseInt(arr1[2])/Integer.parseInt(arr2[2]);
System.out.println(Math.min(cabbage, Math.min(flour, milk)));

我起初尝试在非工作代码中将 BufferedReader 更改为 Scanner 并使用 in.nextLine() 但这不起作用。然后我想也许有一个被零除的情况,但问题条件排除了它,这应该仍然是工作代码中的一个问题,所以我不知道为什么第一个有效而第二个无效。

4

1 回答 1

0

当输入仅由空格分隔而没有任何换行符时,它会失败。您在非工作代码中获得 NPE,或者在等待输入时,由于您的程序阻塞,您超过了此测试的 0.5 秒时间限制。

于 2012-05-21T16:50:00.040 回答