[SWEA 1266] 소수 완제품 확률
2021. 10. 19. 01:51
SWEA 1266. [S/W 문제해결 응용] 9일차 - 소수 완제품 확률 문제 링크 https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV18Sx36IwACFAZN SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com C++ 풀이 #include #include using namespace std; //n개 중에 r개를 뽑는 조합 수 구하기(nCr = n-1Cr-1 + n-1Cr) int cal_comb(int n, int r) { if (r == 0 || n == r) return 1; else return cal_comb(n ..