码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 1306

时间:2014-09-27 12:59:39      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:blog   io   os   for   sp   div   c   log   amp   

其实求的这个数的式子化简一下,就是C(N,M).....

#include <iostream>
#include <algorithm>
#include <cstdio>
#define LL __int64
using namespace std;

LL N,M;

LL myc(LL n,LL r){
	LL sum=1;
	for(LL i=1;i<=r;i++)
	sum=sum*(n-r+i)/i;
	return sum;
}

int main(){
	while(scanf("%d%d",&N,&M),N||M){
		LL ans=myc(N,M);
		printf("%I64d things taken %I64d at a time is %I64d exactly.\n",N,M,ans);
	}
	return 0;
}

  

POJ 1306

标签:blog   io   os   for   sp   div   c   log   amp   

原文地址:http://www.cnblogs.com/jie-dcai/p/3996145.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!