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

nyoj-158-省赛来了(组合数)

时间:2018-04-25 18:56:59      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:链接   auth   bsp   lin   turn   line   题目   cst   http   

题目链接

 1 /*
 2     Name:nyoj-158-省赛来了
 3     Copyright:
 4     Author:
 5     Date: 2018/4/25 17:07:22
 6     Description:
 7     暴力,秒天秒地 
 8 */
 9 #include <iostream>
10 #include <cstdio>
11 using namespace std;
12 long long c[1000][1000];
13 int main()
14 {
15     for (int i=1; i<1000; i++) {
16         c[i][0] = c[i][i] = 1;
17         for (int j=1; j<i; j++) {
18             c[i][j] = c[i-1][j] + c[i-1][j-1];
19         }
20     }
21     int m, n;
22     while (cin>>m>>n) {
23         long long ans = 1;
24         while (m > 0) {
25             ans *= c[m][n];
26             m -= n;
27         }
28         cout <<ans %2013<<endl;
29     }
30     return 0;
31 }

 

nyoj-158-省赛来了(组合数)

标签:链接   auth   bsp   lin   turn   line   题目   cst   http   

原文地址:https://www.cnblogs.com/evidd/p/8945962.html

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