大数的运算
我_是好人
我会加油的!
展开
-
A + B Problem II 大数相加(可以作为模板题)
A + B Problem II Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 317574 Accepted Submission(s): 61700 Problem Description I have原创 2016-08-15 16:27:18 · 293 阅读 · 0 评论 -
大数相减
这题我是很认真写的,希望你们喜欢 题意就是,输入t组数, 然后输入两个大数,让第一个减去第二个,, 我这个代码两个大数不能是负数, 输入 3 12 12 123456789 987654321 100000 999999 输出 0 -864197532 -899999 #include #include #include #include #原创 2016-08-15 19:38:36 · 241 阅读 · 0 评论 -
poj 2389 Bull Math(可做大数相乘模板)
Bull Math Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 14488 Accepted: 7445 Description Bulls are so much better at math than the cows. They can multipl原创 2016-08-16 17:37:20 · 243 阅读 · 0 评论 -
1017. A除以B (20)(大数向除)
1017. A除以B (20) 时间限制 100 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 CHEN, Yue 本题要求计算A/B,其中A是不超过1000位的正整数,B是1位正整数。你需要输出商数Q和余数R,使得A =原创 2016-08-17 20:39:03 · 441 阅读 · 0 评论 -
poj 2635 The Embarrassed Cryptographer
The Embarrassed Cryptographer Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 14077 Accepted: 3846 Description The young and very promising cryptographer原创 2016-08-18 17:29:26 · 254 阅读 · 0 评论 -
求素数的方法
今天我就给大家介绍一下如何高效的求取一个区间的所有素数的方法: 具体参考的是大白书: 如何求取素数呢?其实很简单,思想呢就是找出所有整数P然后,删去2*P,3*P。。。。。就好了? 大该怎么做呢? 我们来真实数据 100以内有25个素数,10^3有168个,10^4有1229个,10^5有9592个,10^6有78498个,10^7有664579个 我们就有实例说明一下: 0~n原创 2016-08-18 14:42:40 · 395 阅读 · 0 评论