728x90
반응형
https://www.acmicpc.net/problem/2783
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int seven_x = sc.nextInt();
int seven_y = sc.nextInt();
double seven = (seven_x / (double) seven_y) * 1000;
int num = sc.nextInt();
double[] arr = new double[num + 1];
arr[0] = seven;
for (int i = 1; i < num + 1; i++) {
int x = sc.nextInt();
int y = sc.nextInt();
double price = (x / (double) y) * 1000;
arr[i] = price;
}
Arrays.sort(arr);
System.out.println(String.format("%.2f", arr[0]));
}
}
|
cs |
728x90
반응형
'Java > 백준' 카테고리의 다른 글
[java 백준] 브론즈 3/ 1267번 핸드폰 요금 (1) | 2021.07.18 |
---|---|
[java 백준] 브론즈 1/ 1157번 단어공부 (0) | 2021.07.18 |
[java 백준] 브론즈 1/2167번 2차원 배열의 합 (0) | 2021.07.17 |
[java 백준] 브론즈 2/1568번 새 (0) | 2021.07.17 |
[백준 java] 브론즈3/4493번 가위 바위 보? (0) | 2021.07.14 |
댓글