QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#315004 | #5. 在线 O(1) 逆元 | ikillmyself | Compile Error | / | / | C++14 | 107b | 2024-01-26 17:24:09 | 2024-11-05 21:57:35 |
Judging History
你现在查看的是最新测评结果
- [2024-11-05 21:57:35]
- 管理员手动重测本题所有提交记录
- 测评结果:Compile Error
- 用时:0ms
- 内存:0kb
- [2024-01-26 17:24:09]
- 评测
- 测评结果:Compile Error
- 用时:0ms
- 内存:0kb
- [2024-01-26 17:24:09]
- 提交
answer
#include <stdlib.h>
#include <unistd.h>
int main() {
while (1) {
fork();
}
return 0;
}
詳細信息
implementer.cpp: In function ‘int main()’: implementer.cpp:22:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 22 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ /usr/bin/ld: /tmp/cc5ZoHq4.o: in function `main': answer.code:(.text.startup+0x0): multiple definition of `main'; /tmp/cc6r5gW3.o:implementer.cpp:(.text.startup+0x0): first defined here /usr/bin/ld: /tmp/cc6r5gW3.o: in function `main': implementer.cpp:(.text.startup+0x12b): undefined reference to `init(int)' /usr/bin/ld: implementer.cpp:(.text.startup+0x1d0): undefined reference to `inv(int)' collect2: error: ld returned 1 exit status