提交记录 19671
| 提交时间 |
评测时间 |
| 2023-07-11 21:02:01 |
2023-07-11 21:02:02 |
#include <iostream>
#include <sys/mman.h>
#include <sys/stat.h>
int main()
{
constexpr size_t STR_LEN = 2000005;
int fd = fileno(stdin);
struct stat sb;
fstat(fd, &sb);
char *p = (char *)mmap(NULL, STR_LEN, PROT_READ, MAP_PRIVATE, fd, 0);
puts(p);
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 33.47 us | 32 KB | Runtime Error | Score: 0 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-03-14 03:21:15 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠