본문 바로가기

Study/algorithms

[백준] 11050 이항계수1

반응형

https://www.acmicpc.net/problem/11050

#include <cstdio>

int main() {
    double n, k;
    double result = 1;
    scanf("%lf %lf", &n, &k);
    for (int i = 0; i < k; i++) {
        result *= (n-i)/(k-i);
    }
    printf("%.0lf\n", result);
}

'Study > algorithms' 카테고리의 다른 글

[백준] 9375. 패션왕 신해빈  (0) 2020.02.16
[백준] 11051. 이항계수2  (0) 2020.02.15
[백준] 3036. 링  (0) 2020.02.15
[백준] 1541. 잃어버린 괄호  (0) 2020.02.11
[백준] 2565 전깃줄  (0) 2020.02.08