• 문제 링크
https://www.acmicpc.net/problem/2783
• 풀이 코드
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
public class Main {
public static void main(String[] args) throws IOException {
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
double min = (double) read() / read() * 1000;
int n = read();
while (n-- > 0) min = Math.min(min, (double) read() / read() * 1000);
bw.write(String.valueOf(min));
bw.flush();
}
private static int read() throws IOException {
int c, n = System.in.read() & 15;
while ((c = System.in.read()) > 32) n = (n << 3) + (n << 1) + (c & 15);
return n;
}
}
'Problem Solving > Baekjoon' 카테고리의 다른 글
[백준] 2774 아름다운 수 - Implementation / Java (0) | 2025.03.11 |
---|---|
[백준] 3062 수 뒤집기 - Implementation / Java (0) | 2025.03.10 |
[백준] 13280 Selection of Participants of an Experiment - Brute Force / Java (0) | 2025.03.08 |
[백준] 13774 Palindromes - Brute Force / Java (0) | 2025.03.08 |
[백준] 32290 MEX vs OR - Brute Force / Java (0) | 2025.03.06 |
댓글