백준_13251 조약돌 꺼내기Algorithm/Algorithm 문제2024. 4. 1. 21:54
Table of Contents
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class BJ_13251_조약돌꺼내기 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int m = Integer.parseInt(br.readLine());
int[] rock = new int[m];
int i;
int total = 0;
StringTokenizer st = new StringTokenizer(br.readLine(), " ");
for (i=0; i<m; i++) {
rock[i] = Integer.parseInt(st.nextToken());
total += rock[i];
}
int k = Integer.parseInt(br.readLine());
int j;
double temp;
double result = 0;
for (i=0; i<m; i++) {
if (rock[i] >= k) {
temp = 1;
for(j=0; j<k; j++) {
temp = temp * (rock[i] - j) / (total - j);
}
result += temp;
}
}
System.out.println(new StringBuilder().append(result));
}
}
'Algorithm > Algorithm 문제' 카테고리의 다른 글
백준_1256 사전 (조합 순열) (0) | 2024.04.08 |
---|---|
백준_1722 순열의 순서 (조합 순열) (0) | 2024.04.06 |
백준_1010 다리 놓기 (1) | 2024.04.01 |
백준_2775 부녀회장이 될테야 (조합) (0) | 2024.03.28 |
백준_11051 이항 계수 2 (조합) (0) | 2024.03.26 |
@kjyyjk :: 녕의 학습 기록
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!