Java大数
SlienceAccept
「箴言4:23」 你要保守你心,胜过保守一切,因为一生的果效,是由心发出。
展开
-
Goldbach(2018 ACM-ICPC 中国大学生程序设计竞赛线上赛 B题)
题目链接 Description:Goldbach’s conjecture is one of the oldest and best-known unsolved problems in number theory and all of mathematics. It states:Every even integer greater than 2 can be expressed ...原创 2018-04-23 20:26:18 · 545 阅读 · 0 评论 -
大明A+B[Java大浮点数]
Problem Description 话说,经过了漫长的一个多月,小明已经成长了许多,所以他改了一个名字叫“大明”。 这时他已经不是那个只会做100以内加法的那个“小明”了,现在他甚至会任意长度的正小数的加法。现在,给你两个正的小数A和B,你的任务是代表大明计算出A+B的值。Input 本题目包含多组测试数据,请处理到文件结束。 每一组测试数据在一行里面包含两个长度不大于400的...原创 2018-05-01 11:46:23 · 208 阅读 · 0 评论 -
Reversion Count(2018 ACM-ICPC 中国大学生程序设计竞赛线上赛 I题)
题目链接 Description:There is a positive integer X, X’s reversion count is Y. For example, X=123, Y=321; X=1234, Y=4321. Z=(X-Y)/9, Judge if Z is made up of only one number(0,1,2…9), like Z=11,Z=111,Z=222原创 2018-04-24 18:55:35 · 245 阅读 · 0 评论 -
最佳加法表达式
题目链接 描述 给定n个1到9的数字,要求在数字之间摆放m个加号(加号两边必须有数字),使得所得到的加法表达式的值最小,并输出该值。例如,在1234中摆放1个加号,最好的摆法就是12+34,和为36输入 有不超过15组数据 每组数据两行。第一行是整数m,表示有m个加号要放( 0<=m<=50) 第二行是若干个数字。数字总数n不超过50,且 m <= n-1 输出 ...原创 2018-08-16 15:48:19 · 1215 阅读 · 0 评论 -
L1-6 整除光棍(20 分)
题目链接 这里所谓的“光棍”,并不是指单身汪啦~说的是全部由1组成的数字,比如1、11、111、1111等。传说任何一个光棍都能被一个不以5结尾的奇数整除。比如,111111就可以被13整除。 现在,你的程序要读入一个整数x,这个整数一定是奇数并且不以5结尾。然后,经过计算,输出两个数字:第一个数字s,表示x乘以s是一个光棍,第二个数字n是这个光棍的位数。这样的解当然不是唯一的,题目要求你输...原创 2018-03-18 17:02:21 · 3963 阅读 · 0 评论 -
sum of power[山东省第八届ACM大学生程序设计竞赛]
题目链接 Problem DescriptionCalculate mod (1000000000+7) for given n,m. InputInput contains two integers n,m(1≤n≤1000,0≤m≤10). OutputOutput the answer in a single line. Sample Input10 0 Sam...原创 2018-04-13 19:11:07 · 162 阅读 · 0 评论 -
Hat's Fibonacci
题目链接 Problem Description A Fibonacci sequence is calculated by adding the previous two members the sequence, with the first two members being both 1. F(1) = 1, F(2) = 1, F(3) = 1,F(4) = 1, F(n>4) =原创 2018-04-09 19:13:09 · 194 阅读 · 0 评论 -
N!
题目链接 Problem Description Given an integer N(0 ≤ N ≤ 10000), your task is to calculate N!Input One N in one line, process to the end of file.Output For each N, output N! in one line.Sample Input 1原创 2018-04-08 20:50:26 · 202 阅读 · 0 评论