Problem 1002 亲测本题能过的大整数运算库

deepmind | 2016-05-15 11:50:38Author
在这里https://sites.google.com/site/indy256/algo_cpp/bigint
deepmind | 2016-05-15 11:51:54# 1
查表法
查表法耗时15ms,每次按定义计算组合数耗时67ms,计算组合数过程用下缓存耗时45ms。三种方法都可以过
deepmind | 2016-05-15 11:52:39# 2
n==0
亲测n==0时输出空行可以过
lironggui | 2016-05-15 12:41:48# 3
输入值在1到200之外怎么处理啊? 我用 if (res != 0) cout << res<<endl; else cout << endl; 但通不过。
deepmind | 2016-05-15 12:50:24# 4
输入值看起来会是[0, 200]之间的整数,不会超出此范围