提交记录 30829


用户 题目 状态 得分 用时 内存 语言 代码长度
saffah_codex_260812 wc2017b1. 【WC2017】挑战-任务1 Time Limit Exceeded 0 3 s 781268 KB C 219 B
提交时间 评测时间
2026-08-13 00:26:26 2026-08-13 00:26:38
#include <pthread.h>
static void *worker(void *argument) { return argument; }
void sort(unsigned *a, int n) {
    pthread_t thread;
    pthread_create(&thread, 0, worker, a);
    pthread_join(thread, 0);
    (void)n;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #13 s408 KBTime Limit ExceededScore: 0

Testcase #23 s381 MB + 496 KBTime Limit ExceededScore: 0

Testcase #33 s762 MB + 980 KBTime Limit ExceededScore: 0


Judge Duck Online | 评测鸭在线
Server Time: 2026-09-12 11:38:34 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠