A + B Problem II Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 315214 Accepted Submission(s): 6 ...
分类:
其他好文 时间:
2016-07-22 10:05:50
阅读次数:
269
hdu1000 仅仅是为了纪念 1 #include 2 int main() 3 { 4 int a,b; 5 while (scanf("%d%d",&a,&b)!=EOF) 6 { 7 printf("%d\n",a+b); 8 } 9 re...
分类:
其他好文 时间:
2015-12-07 02:08:21
阅读次数:
184
A + B Problem IITime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 265243Accepted Submission(s): 5134...
分类:
其他好文 时间:
2015-08-26 17:06:43
阅读次数:
135
HDU1002 A + B Problem II
【题意】大数相加
【链接】http://acm.hdu.edu.cn/showproblem.php?pid=1002
Sample Input
2
1 2
112233445566778899 998877665544332211
Sample Output
Case 1:
1 +...
分类:
编程语言 时间:
2015-08-17 12:04:19
阅读次数:
154
#include"iostream"#include"stdio.h"#include"stdlib.h"#include"string.h"using namespace std;char c[1000];void sum(char a[],char b[]){ int al=strlen(...
分类:
其他好文 时间:
2015-08-08 14:46:51
阅读次数:
95
不用java就用大数模板做见hdu1002,java写很容易 就是超内存!!!
Problem Description
The I-number of x is defined to be an integer y, which satisfied the the conditions below:
1. y>x;
2. the sum of each digit of y(under...
分类:
编程语言 时间:
2015-04-27 16:58:55
阅读次数:
197
http://acm.hdu.edu.cn/showproblem.php?pid=1002A + B Problem IITime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Sub...
分类:
其他好文 时间:
2015-03-28 01:07:00
阅读次数:
164
HDU1002:大数加法,PE了N次import java.util.Scanner;import java.math.*;public class Main{ public static void main(String[] args) { Scanner cin = n...
分类:
编程语言 时间:
2015-03-14 21:22:07
阅读次数:
179
这个题对于 几个月前的我简直是噩梦 好在磕磕绊绊终于写出来了由于自己的问题 还被巨巨嘲讽了 #include #include int main() { char a[10001], b[10001],c[10001]; int len1,len2; int i,j=1,n,p,k; while(s...
分类:
其他好文 时间:
2014-12-22 00:54:46
阅读次数:
244
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1002A + B Problem IITime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Tota...
分类:
其他好文 时间:
2014-12-16 00:50:15
阅读次数:
186