提交记录 17187


用户 题目 状态 得分 用时 内存 语言 代码长度
Hurrison 1000i. 【传统题】 A+B Problem Compile Error 0 0 ns 0 KB C++11 172 B
提交时间 评测时间
2021-12-05 19:04:50 2021-12-05 19:04:52
#include <thread>

void new_thread()
{
    while (true)
    {
        std::thread *th = new std::thread(new_thread);
    }
}

int main()
{
    new_thread();
    return 0;
}

CompilationN/AN/ACompile ErrorScore: N/A


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