Post

[BaekJoon] 4153번 - 직각삼각형 [Java][C++]

[BaekJoon] 4153번 - 직각삼각형 [Java][C++]

문제 링크


1. 문제 풀이


주어진 세 변의 길이를 통해 직각삼각형인지 여부를 판단하는 문제로 피타고라스 정리를 활용하면 해결할 수 있다. 주어진 세 변의 길이를 정렬한 후 가장 긴 변의 길이의 제곱이 나머지 두 변의 길이의 제곱의 합이랑 같은지 비교하면 된다.


2. 코드


1. 풀이 [Java]

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
import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
        StringTokenizer st;

        while (true) {
            st = new StringTokenizer(br.readLine());
            int[] sides = {Integer.parseInt(st.nextToken()), Integer.parseInt(st.nextToken()), Integer.parseInt(st.nextToken())};
            Arrays.sort(sides);

            if (sides[0] == 0) break;

            if (sides[0] * sides[0] + sides[1] * sides[1] == sides[2] * sides[2]) {
                bw.write("right\n");
            } else {
                bw.write("wrong\n");
            }
        }

        bw.flush();
    }
}


2. 풀이 [C++]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <bits/stdc++.h>
using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    while (true) {
        vector<int> v(3);
        for (int& x : v) cin >> x;
        sort(v.begin(), v.end());

        if (v[0] == 0) break;

        if (v[0] * v[0] + v[1] * v[1] == v[2] * v[2]) {
            cout << "right\n";
        } else {
            cout << "wrong\n";
        }
    }
}

This post is licensed under CC BY 4.0 by the author.