-Code
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
int[] paper = {229 * 324, 297 * 420, 210 * 297};
int a = scanner.nextInt();
int b = scanner.nextInt();
int c = scanner.nextInt();
double answer = ((paper[0] * a + paper[1] * b) * 2 + paper[2] * c) * 1e-6;
System.out.println(String.format("%.6f", answer));
}
}
'Beakjoon&프로그래머스 > Java' 카테고리의 다른 글
[백준/Java] 24309번 РАВЕНСТВО (0) | 2022.04.15 |
---|---|
[백준/Java] 24086번 알고리즘 수업 - 알고리즘의 수행 시간 1 (0) | 2022.04.15 |
[백준/Java] 24086번 身長 (Height) (0) | 2022.04.15 |
[백준/Java] 24082번立方体 (Cube) (0) | 2022.04.15 |
[백준/Java] 24078번 余り (Remainder) (0) | 2022.04.14 |