提交记录 9259
| 用户 | 题目 | 状态 | 得分 | 用时 | 内存 | 语言 | 代码长度 |
|---|---|---|---|---|---|---|---|
| zhouzhendong | 1007. 测测你的memset | Compile Error | 0 | 0 ns | 0 KB | C++ | 182 B |
| 提交时间 | 评测时间 |
|---|---|
| 2019-04-21 19:50:38 | 2020-08-01 01:34:43 |
void my_memset(char *a,register const char c,const unsigned n) {
char *t=a+n,*s=a;
while (s+4<=t){
*s=c;
*(s+1)=c;
*(s+2)=c;
*(s+3)=c;
s+=4;
}
while (s<t)
*(s++)=c;
}
| Compilation | N/A | N/A | Compile Error | Score: N/A | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-04-04 15:12:26 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠