[BaekJoon] 16478번 - 원의 분할 [Java][C++]
[BaekJoon] 16478번 - 원의 분할 [Java][C++]
1. 문제 풀이
원에서 두 현이 교차하는 상황으로 방멱 정리를 활용하면 $p_{ab} \cdot p_{cd} = p_{bc} \cdot p_{da}$ 가 된다.
2. 코드
1. 풀이 [Java]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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));
StringTokenizer st = new StringTokenizer(br.readLine());
int a = Integer.parseInt(st.nextToken());
int b = Integer.parseInt(st.nextToken());
int c = Integer.parseInt(st.nextToken());
System.out.println((double) a * c / b);
}
}
2. 풀이 [C++]
1
2
3
4
5
6
7
8
9
10
11
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int a, b, c;
cin >> a >> b >> c;
cout << fixed << setprecision(6) << (double)a * c / b;
}
Ref
This post is licensed under CC BY 4.0 by the author.