728x90
문제
https://www.acmicpc.net/problem/4153
접근 방법
1. 피타고라스로 풀면 되는 간단한 문제입니다.
코드
package Bronze;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class B_4153 {
private static StringBuilder sb;
private static BufferedReader br;
private static StringTokenizer st;
private static int a,b,c;
private static int max = 0;
//입력
public static void input() throws Exception {
br = new BufferedReader(new InputStreamReader(System.in));
sb = new StringBuilder();
while(true){
st = new StringTokenizer(br.readLine());
a = Integer.parseInt(st.nextToken());
b = Integer.parseInt(st.nextToken());
c = Integer.parseInt(st.nextToken());
if( a==0 && b==0 && c == 0) break;
process();
}
}
//실행
public static void process() {
if ((a * a) + (b * b) == (c * c)) System.out.println("right");
else if ((b * b) + (c * c) == (a * a)) System.out.println("right");
else if ((c * c) + (a * a) == (b * b)) System.out.println("right");
else System.out.println("wrong");
}
public static void main(String[] args) throws Exception {
input();
}
}
'코딩테스트 > 백준' 카테고리의 다른 글
[Java] 백준 7568번 : 덩치 (0) | 2024.05.06 |
---|---|
[Java] 백준 4949번 : 균형잡힌 세상 (0) | 2024.05.06 |
[Java] 백준 2869번 : 달팽이는 올라가고 싶다 (0) | 2024.05.03 |
[Java] 백준 2839번 : 설탕 배달 (0) | 2024.05.03 |
[Java] 백준 2798번 : 블랙잭 (1) | 2024.05.02 |