-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path369.cpp
More file actions
42 lines (40 loc) · 980 Bytes
/
369.cpp
File metadata and controls
42 lines (40 loc) · 980 Bytes
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
32
33
34
35
36
37
38
39
40
41
42
/**
* ____
* ____ ___ ____ ________ __/ __/
* / __ `__ \/ __ `/ ___/ / / / /_
* / / / / / / /_/ / / / /_/ / __/
* /_/ /_/ /_/\__,_/_/ \__,_/_/
*
* @link : https://the-redback.com
*/
#include <bits/stdc++.h>
using namespace std;
#define inf HUGE_VAL
#define mem(a, b) memset(a, b, sizeof(a))
long long ncr(int n, int r) {
int k, l;
k = max(r, n - r);
l = min(r, n - r);
long long sum = 1;
long long i;
int j = 1;
for (i = k + 1; i <= n; i++) {
sum = (long long)sum * i;
if (j <= l && sum % j == 0) {
sum /= j;
j++;
}
}
return sum;
}
int main() {
int n, k, l, r;
int tc, t = 1;
// scanf("%d",&tc);
while (~scanf("%d%d", &n, &r)) {
if (n == 0 && r == 0) return 0;
long long sum = ncr(n, r);
printf("%d things taken %d at a time is %lld exactly.\n", n, r, sum);
}
return 0;
}