티스토리 뷰

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
#include <iostream>
#include <cmath>
using namespace std;
 
int main() {
    int input;
    cin >> input;
    for (int i = 0; i < input; i++) {
        int x1, y1, r1, x2, y2, r2;
        cin >> x1 >> y1 >> r1 >> x2 >> y2 >> r2;
        double length = sqrt(pow(x1 - x2, 2+ pow(y1 - y2, 2));
        
        if (x1 == x2 && y1 == y2) {
            if (r1 == r2)
                cout << -1 << endl;
            else
                cout << 0 << endl;
        }
        else {
            if (length<r1 + r2 && length>abs(r1 - r2))
                cout << 2 << endl;
            else if (length == r1 + r2 || abs(r1 - r2) == length)
                cout << 1 << endl;
            else
                cout << 0 << endl;
        }
    }
}
cs
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
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
글 보관함