提交记录 2483


用户 题目 状态 得分 用时 内存 语言 代码长度
wxh 1002. 测测你的多项式乘法 Wrong Answer 0 2.18 ms 15636 KB C 184 B
提交时间 评测时间
2018-06-27 09:22:48 2020-07-31 21:03:16
#include <math.h>

void poly_multiply(unsigned *a, int n, unsigned *b, int m, unsigned *c)
{
for(int i=0;i<=n;i++)a[i]=0;
for(int i=0;i<=m;i++)b[i]=0;
for(int i=0;i<=n+m;i++)c[i]=0;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #12.18 ms15 MB + 276 KBWrong AnswerScore: 0


Judge Duck Online | 评测鸭在线
Server Time: 2026-04-20 12:29:06 | Loaded in 1 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠