HDU1002 A+B Problem Ⅱ https://vjudge.net/contest/310259#problem/B #include <cstdio> #include <cstring> #include <string> #include <iostream> #include ...
分类:
编程语言 时间:
2019-12-21 13:28:21
阅读次数:
86
这一题实在有坑,而且是大坑,本来以为只是简单的整数题,最多用long就可以了吧,但是实际上这一题要用到大整数加法,在c++中大整数加法是通过字符串模拟来实现的,Java可以直接使用BigInteger类,后面贴代码,下面是c++常用数据类型的范围: short : -32768 ~ 32767 in ...
分类:
其他好文 时间:
2019-11-04 21:52:37
阅读次数:
95
大数加法 hdu1002 #include <iostream> #include <cstdio> #include <string> #include <cstring> #include <cmath> #include <sstream> #include <algorithm> #incl ...
分类:
其他好文 时间:
2018-09-15 13:50:32
阅读次数:
196
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=1002 A + B Problem II Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) ...
分类:
其他好文 时间:
2018-04-06 19:38:26
阅读次数:
139
今天早上没事干又把这个敲了一遍,虽然手冻得不行,不过又深入理解理解还可以哈。 难点就在给你的整数可能很大很长,所以long long 肯定不行,得用字符串来读取存储,然后注意一下相加的时候进位,最后输出注意去0就OK啦。(核心思想就是大数逆序相加最后逆序再输出就是正确结果了)。然后下边是自己写的思路 ...
分类:
其他好文 时间:
2018-02-12 11:27:35
阅读次数:
106
A + B Problem II Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 389710 Accepted Submission(s): 7 ...
分类:
其他好文 时间:
2017-12-04 23:39:39
阅读次数:
308
题目: I have a very simple problem for you. Given two integers A and B, your job is to calculate the Sum of A + B. InputThe first line of the input cont ...
分类:
其他好文 时间:
2017-08-04 21:26:48
阅读次数:
114
Problem Description I have a very simple problem for you. Given two integers A and B, your job is to calculate the Sum of A + B. Input The first line ...
分类:
其他好文 时间:
2017-04-29 23:38:51
阅读次数:
215
e.g. HDU1002 HDU1715 大斐波那契数 ...
分类:
编程语言 时间:
2017-04-04 15:12:34
阅读次数:
293
//c//https://github.com/ssdutyuyang199401/hduacm/blob/master/1002.c#include<stdio.h>#include<string.h>int shu(char a){return (a-'0');}int main(){char ...
分类:
其他好文 时间:
2017-01-10 14:41:52
阅读次数:
197