
高精度
提比-我有特殊的AC技巧
这个作者很懒,什么都没留下…
展开
-
Exponentiation - POJ 1001 高精度
Exponentiation Time Limit: 500MS Memory Limit: 10000K Total Submissions: 132745 Accepted: 32433 Description Problems involving the computation of exact values of ve原创 2014-06-25 16:32:44 · 715 阅读 · 0 评论 -
If We Were a Child Again - UVa 10494 高精度
Problem C If We Were a Child Again Input: standard input Output: standard output Time Limit: 7 seconds “Oooooooooooooooh! If I could do the easy mathematics like my school days!! I c原创 2014-06-03 20:45:33 · 770 阅读 · 0 评论 -
Product - UVa 10106 高精度
Product The Problem The problem is to multiply two integers X, Y. (0250) The Input The input will consist of a set of pairs of lines. Each line in pair contains one multiplyer. The原创 2014-06-03 20:40:39 · 723 阅读 · 0 评论 -
Distinct Subsequences - UVa 10069 dp+高精度
Distinct Subsequences Input: standard input Output: 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 · 574 阅读 · 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 · 623 阅读 · 0 评论