高精度
提比-我有特殊的AC技巧
这个作者很懒,什么都没留下…
展开
-
Exponentiation - POJ 1001 高精度
ExponentiationTime Limit: 500MS Memory Limit: 10000KTotal Submissions: 132745 Accepted: 32433DescriptionProblems involving the computation of exact values of ve原创 2014-06-25 16:32:44 · 706 阅读 · 0 评论 -
If We Were a Child Again - UVa 10494 高精度
Problem CIf We Were a Child AgainInput: standard inputOutput: standard outputTime Limit: 7 seconds “Oooooooooooooooh!If I could do the easy mathematics like my school days!!I c原创 2014-06-03 20:45:33 · 762 阅读 · 0 评论 -
Product - UVa 10106 高精度
Product The ProblemThe problem is to multiply two integers X, Y. (0250)The InputThe input will consist of a set of pairs of lines. Each line in pair contains one multiplyer.The原创 2014-06-03 20:40:39 · 705 阅读 · 0 评论 -
Distinct Subsequences - UVa 10069 dp+高精度
Distinct SubsequencesInput: standard inputOutput: standard output A subsequence of a given sequence is just the given sequence with some elements (possibly none) left out. Formally, given a se原创 2014-07-29 16:46:12 · 561 阅读 · 0 评论 -
How Many Fibs? - UVa 10183 大数加法
题意:在L-R的范围内有多少斐波那契数。思路:大数加法,然后挨个找即可。AC代码如下:import java.math.BigInteger;import java.util.Scanner;public class Main { public static void main(String [] args) { Scanner scan=new Scanner(Sy原创 2015-03-24 23:32:56 · 607 阅读 · 0 评论