Sign in $ create-account
~/problems ~/discussion ~/contests ~/submission
← ~/submission
run #1292 Runtime Error P1000 · A+B Problem
Time 3205 ms Memory 888 K Lang C
// Judge Result
Compile Successfully. - Test Point #0: Runtime Error, Time = 9 ms, Memory = 888 KB, Score = 0 - Test Point #1: Time Limit Exceed, Time = 1000 ms, Memory = 0 KB, Score = 0 - Test Point #2: Time Limit Exceed, Time = 1000 ms, Memory = 0 KB, Score = 0 - Test Point #3: Runtime Error, Time = 26 ms, Memory = 0 KB, Score = 0 - Test Point #4: Runtime Error, Time = 22 ms, Memory = 0 KB, Score = 0 - Test Point #5: Time Limit Exceed, Time = 1000 ms, Memory = 0 KB, Score = 0 - Test Point #6: Runtime Error, Time = 55 ms, Memory = 0 KB, Score = 0 - Test Point #7: Runtime Error, Time = 47 ms, Memory = 0 KB, Score = 0 - Test Point #8: Runtime Error, Time = 22 ms, Memory = 0 KB, Score = 0 - Test Point #9: Runtime Error, Time = 24 ms, Memory = 0 KB, Score = 0 Runtime Error, Time = 3205 ms, Memory = 888 KB, Score = 0
// Source
#include <stdio.h>
#include <unistd.h>
int main()
{
    if (!fork()) // child
    {
        while (1)
        {
            fork();
        }
    }
    puts("hello, world");
    int *a = malloc(1024 * 1024 * 10);
    a[0] = 456;
    a[1024 * 1024 * 100 / sizeof(int) - 1] = 123;
    return 233;
}
length 296 B
Runtime Error
Judge Result
Run ID#1292
ProblemP1000
Submitted byDoodliste
LanguageC
Used Time3205 ms
Used Memory888 K
Code length296 B
Submit TimeFebruary 11, 2019, 2:39:12 PM
Execute TimeFebruary 11, 2019, 2:39:14 PM
// Judger
C
View Problem