题解

1323 条题解

  • -1
    @ 2014-10-09 11:05:17

    这是一个难度为九的超难题,我打了万进制高精度算法,终于过了

  • -1
    @ 2014-10-06 20:49:22

    RP算法
    program aaa;
    var
    p,a,b:longint;
    begin
    randomize;
    readln(a,b);
    p:=random(100);
    if p<=60 then
    writeln(a+b);
    end.

  • -1
    @ 2014-10-06 20:46:50

    uses crt;
    var
    a,b:longint;
    begin
    read(a,b);
    delay(1000);
    writeln(a+b);
    end.

  • -2
    @ 2014-12-19 16:36:15

    #include<iostream>
    using namespace std;

    int main()
    {
    int a,b,c;
    cin>>a>>b;
    c=a+b;
    cout<<c<<endl;
    return 0;
    }

  • -2
    @ 2014-12-06 13:28:10

    ###略有难度。。。啊哈哈哈哈哈###
    ##高精度##
    测试数据 #0: Accepted, time = 0 ms, mem = 300 KiB, score = 10
    测试数据 #1: Accepted, time = 0 ms, mem = 300 KiB, score = 10
    测试数据 #2: Accepted, time = 0 ms, mem = 300 KiB, score = 10
    测试数据 #3: Accepted, time = 0 ms, mem = 296 KiB, score = 10
    测试数据 #4: Accepted, time = 0 ms, mem = 296 KiB, score = 10
    测试数据 #5: Accepted, time = 0 ms, mem = 300 KiB, score = 10
    测试数据 #6: Accepted, time = 0 ms, mem = 296 KiB, score = 10
    测试数据 #7: Accepted, time = 0 ms, mem = 296 KiB, score = 10
    测试数据 #8: Accepted, time = 0 ms, mem = 300 KiB, score = 10
    测试数据 #9: Accepted, time = 0 ms, mem = 300 KiB, score = 10
    Accepted, time = 0 ms, mem = 300 KiB, score = 100

    #/*代码*/#
    #include <iostream>
    #include <algorithm>
    #include <cstdio>
    #include <cstdlib>
    #include <cstring>
    #include <cmath>
    #include <queue>
    using namespace std;

    int a[1002],b[1002],c[2005],L,L1,L2;
    char str1[1002],str2[1002];
    int main(){
    cin>>str1>>str2;
    L1=strlen(str1);
    L2=strlen(str2);
    L=(max(L1,L2));
    for (int i=0;i<L1;i++) a[i]=str1[L1-i-1]-'0';
    for (int i=0;i<L2;i++) b[i]=str2[L2-i-1]-'0';
    for (int i=0;i<L;i++) c[i]=a[i]+b[i];
    for (int i=0;i<L;i++)
    if (c[i]>=10) c[i+1]++,c[i]-=10;
    if (c[L]!=0)
    for (int i=L;i>=0;i--) cout<<c[i];
    else for (int i=L-1;i>=0;i--)
    cout<<c[i];
    return 0;
    }

  • -3
    @ 2017-07-22 20:54:03

    #inlcude<iostream>
    using namespace std;
    int main()
    {
    int A,B;
    cin>>A>>B;
    cout<<A+B<<endl;
    return 0;
    }

  • -3
    @ 2017-07-21 17:25:43

    #include <cstdio>
    #include <iostream>
    using namespace std;
    int main() {
    int a,b;
    cin>>a>>b;
    cout<<a+b<<endl;
    return 0;
    }

  • -3
    @ 2017-07-21 17:25:10

    #include <cstdio>
    #include <iostream>
    using namespace std;
    int main() {
    int a,b;
    cin>>a>>b;
    cout<<a+b<<endl;
    return 0;
    }

  • -3
    @ 2017-07-21 14:48:04

    不愧是vijos最难的题
    写法千变万化,难以捉摸,各路英雄都给出了强大的解法
    #include <bits/stdc++.h>
    #include <time.h>
    using namespace std;
    int main()
    {
    srand((unsigned)time(NULL));
    int a,b,s;
    scanf ("%d%d",&a,&b);
    for (;;)
    {
    s=rand()%(a+b)+1;
    if (s==a+b) {
    printf ("%d",s);
    break;
    }
    }
    }
    来道随机化解法

  • -3
    @ 2006-03-15 16:27:26

    无语...........

  • -3
    @ 2006-03-06 22:13:32

    唉.......每个online judge 第一题都是这个,汗.......

  • -3
    @ 2006-02-11 20:11:01

    没什么好说的了。。。。。。

  • -3
    @ 2006-01-26 09:08:37

    此题实质上非常复杂 全面考察到了数学史和计算机史 经典代数 常用计算与输入输出等等等等知识点

    考虑到题目的所有可能性 我们应当从计算机存储的二进制的角度来逐步考虑数的表示 以字节计数,采用多字节合用的方式表示一个大整数如今已经是高级程序语言编译器轻松可以达到的目标 可是为了加强对计算机计数的了解 此题可以考虑仍以最原始的方式进行计算——并且考虑最终将二进制数转变为十进制输出的全部过程 期间还考察了对ASCII码的熟悉程度

    此题实在经典 乃居家旅行必备之良题

  • -3
    @ 2006-01-23 15:36:00

    我们同学的程序什么问题也没有

    但是超时....狂晕...

  • -4
    @ 2021-08-13 19:19:16

    #include<bits/stdc++.h>
    using namespace std;
    signed main() {
    int a,b;
    scanf("%d%d",&a,&b);
    printf("%d",a+b);
    return 0;
    }

  • -4
    @ 2006-03-09 13:04:08

    比较简单!

    我才开始还用了IF语句,后来发现.....狂晕,编译失败

  • -6
    @ 2006-06-15 09:17:14

    这题很难的说……

    要用asm重新写一次啊!

  • -6
    @ 2006-06-08 16:43:14

    这条也太EASY了

  • -6
    @ 2006-05-18 20:34:38

    为什么一定要用readln 和 writeln,

    而不可以用read 和 write

    出不来正确答案啊

  • -6
    @ 2006-03-25 16:17:05

    此题要注意字符大小写。

信息

ID
1000
难度
9
分类
(无)
标签
(无)
递交数
74449
已通过
28495
通过率
38%
被复制
223