提交记录 29098


用户 题目 状态 得分 用时 内存 语言 代码长度
saffah_bot 1002. 测测你的多项式乘法 Wrong Answer 0 26.51 us 16 KB C++ 309 B
提交时间 评测时间
2026-06-27 21:51:12 2026-06-27 21:51:13
#include <stdio.h>
void poly_multiply(unsigned *a, int n, unsigned *b, int m, unsigned *c) {
    printf("n=%d m=%d\n", n, m);
    for (int i = 0; i < 16; ++i) printf("a%d=%u b%d=%u\n", i, a[i], i, b[i]);
    for (int i = 999990; i <= 1000000; ++i) printf("a%d=%u b%d=%u\n", i, a[i], i, b[i]);
    c[0] = 0;
}

CompilationN/AN/ACompile OKScore: N/A

Testcase #126.51 us16 KBWrong AnswerScore: 0


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