newcastlecy / hustoj

Automatically exported from code.google.com/p/hustoj
0 stars 0 forks source link

MLE 被判为 TLE (?) #79

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
代码如下,sae提交号为38313,题目是a+b,返回结果是TLE

#include <stdio.h>
int c[70000000];
int main(){
    int a, b;
    scanf("%d%d", &a, &b);
    printf("%d\n", a + b);
    return 0;
}

Original issue reported on code.google.com by alphardw...@gmail.com on 9 Sep 2012 at 1:06

GoogleCodeExporter commented 9 years ago
感觉是申请内存受阻塞,所以超时了吧。

Original comment by newsc...@gmail.com on 7 Oct 2012 at 10:58

GoogleCodeExporter commented 9 years ago

Original comment by newsc...@gmail.com on 7 Oct 2012 at 11:19

GoogleCodeExporter commented 9 years ago

Original comment by newsc...@gmail.com on 12 Oct 2012 at 5:06