250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- React
- 네트워킹
- html
- scrolly
- ArrayList
- 함수
- 초연결사회의 데이터통신과 네트워킹
- 알고리즘
- 스크롤
- 백준
- 자바스크립트
- gsap
- reactjs code snippets
- 일본어
- Node.js
- JavaScript
- java
- 데이터통신
- 한빛아카데미
- 연습문제
- 자바
- 라이브러리
- JLPT
- 단어장
- ScrollToPlugin
- Algorithm
- quizlet
- 초연결 사회의 데이터통신과 네트워킹
- prettier-code formatter
- 이벤트
Archives
- Today
- Total
umilove98의 블로그
백준 1297 Java 본문
반응형
삼각형의 대각선길이 ^2 = 너비^2 + 높이^2 임을 이용하여 계산한다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
String s = bf.readLine();
StringTokenizer st = new StringTokenizer(s);
int c = Integer.parseInt(st.nextToken());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
double h = Math.pow(c, 2) / (Math.pow(a, 2) + Math.pow(b, 2)) * Math.pow(a, 2);
double w = Math.pow(c, 2) / (Math.pow(a, 2) + Math.pow(b, 2)) * Math.pow(b, 2);
System.out.println((int)Math.sqrt(h) + " " + (int)Math.sqrt(w));
}
}
반응형
'algorithm > 백준' 카테고리의 다른 글
백준 1037 Java (0) | 2021.07.22 |
---|---|
백준 1018 Java (0) | 2021.07.22 |
백준 22193 Java (0) | 2021.07.18 |
백준 21300 Java (0) | 2021.07.18 |
백준 20492 Java (0) | 2021.07.18 |