提交记录 31343
| 提交时间 |
评测时间 |
| 2026-08-14 01:39:15 |
2026-08-14 01:40:11 |
int plus(int a, int b) { return a + b; }
extern "C" void __init_libc(char **envp, char *pn);
extern void (*__init_array_start[])(void);
extern void (*__init_array_end[])(void);
void __libc_start_main(int (*m)(int, char **), int ac, char **av) {
__init_libc(av + ac + 1, av[0]);
for (void (**f)(void) = __init_array_start; f != __init_array_end; ++f) (*f)();
m(ac, av);
__asm__ volatile("mov $60,%eax; xor %edi,%edi; syscall");
__builtin_unreachable();
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Testcase #1 | 5.21 us | 12 KB | Accepted | Score: 100 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-09-12 09:07:35 | Loaded in 0 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠