提交记录 17186


用户 题目 状态 得分 用时 内存 语言 代码长度
Hurrison 1000i. 【传统题】 A+B Problem Compile Error 0 0 ns 0 KB C++ 297 B
提交时间 评测时间
2021-12-05 19:04:33 2021-12-05 19:04:34
#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;
}

CompilationN/AN/ACompile ErrorScore: N/A


Judge Duck Online | 评测鸭在线
Server Time: 2024-04-25 07:30:20 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用