解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
int n = sc.nextInt();
int min=Integer.MAX_VALUE;
int max=Integer.MAX_VALUE;
int count=0;
boolean flag=false;
int [][]jiLu=new int[n][2];
for (int i = 0; i < n; i++) {
jiLu[i][0]=sc.nextInt();
jiLu[i][1]=sc.nextInt();
max=Math.min(max,jiLu[i][0]/jiLu[i][1]);
min=Math.min(min,jiLu[i][0]/jiLu[i][1]);
}
while (true){
if(flag) {
break;
}
for (int i = 0; i < n; i++) {
if ((jiLu[i][0] / (min - 1)) != jiLu[i][1]) {
flag = true;
break;
} else if (count == n) {
min--;
count = 0;
} else {
count++;
}
}
}
System.out.println((min)+" "+max);
}
}
0.0分
1 人评分
C语言训练-斐波纳契数列 (C语言代码)浏览:3015 |
简单的a+b (C语言代码)浏览:583 |
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:685 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:1555 |
剪刀石头布 (C语言代码)不知道怎么直接在scanf中用枚举变量浏览:1435 |
输出正反三角形 (C语言代码)浏览:859 |
P1001 (C语言代码)浏览:836 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:782 |
C语言训练-计算t=1+1/2+1/3+...+1/n (C语言代码)浏览:941 |
【蟠桃记】 (C语言代码)浏览:697 |