提交记录 8227


用户 题目 状态 得分 用时 内存 语言 代码长度
Apple_Lyn 1002i. 【模板题】多项式乘法 Wrong Answer 0 423.49 us 428 KB C++ 958 B
提交时间 评测时间
2019-02-03 17:37:17 2020-08-01 01:14:09
#include<bits/stdc++.h>

using namespace std;

#define p_read 10
#define MaximumM 100000
#define MaximumN 100000
template<typename Type>
inline Type Read(Type &val)
{
	char read_data=getchar();
	while( read_data<'0' || '9'<read_data )
	{
		if(read_data==EOF)
			return EOF;
		read_data=getchar();
	}
	val=read_data-'0';
	read_data=getchar();
	while( '0'<=read_data && read_data<='9' )
	{
		val=val*p_read+read_data-'0';
		read_data=getchar();
	}
	return val;
}
//inline Type Read(Type &val)
//{
//	char read_data;
//	for(read_data=getchar(); read_data<'0' || '9'<read_data ;read_data=getchar())
//		if(read_data==EOF)
//			return EOF;
//	val=read_data-'0';
//	for(read_data=getchar(); '0'<=read_data && read_data<='9' ;read_data=getchar())
//		val=val*p_read+read_data-'0';
//	return val;
//}

int m,n;
int a[MaximumM],b[MaximumN];

int main()
{
	Read(m);
	for(int i=0;i<m;i++)
		Read(a[i]);
	Read(n);
	for(int i=0;i<n;i++)
		Read(b[i]);
    
    return 0;
}

CompilationN/AN/ACompile OKScore: N/A

Subtask #1 Testcase #132.5 us40 KBWrong AnswerScore: 0

Subtask #1 Testcase #2413.43 us428 KBWrong AnswerScore: 0

Subtask #1 Testcase #332.98 us40 KBWrong AnswerScore: 0

Subtask #1 Testcase #4421.04 us428 KBWrong AnswerScore: 0

Subtask #1 Testcase #532.15 us40 KBWrong AnswerScore: 0

Subtask #1 Testcase #632.26 us40 KBWrong AnswerScore: 0

Subtask #1 Testcase #732.49 us40 KBWrong AnswerScore: 0

Subtask #1 Testcase #8286.7 us296 KBWrong AnswerScore: 0

Subtask #1 Testcase #9423.49 us428 KBWrong AnswerScore: 0

Subtask #1 Testcase #10281.78 us296 KBWrong AnswerScore: 0

Subtask #1 Testcase #11411.49 us428 KBWrong AnswerScore: 0

Subtask #1 Testcase #12414.26 us428 KBWrong AnswerScore: 0

Subtask #1 Testcase #1332.66 us36 KBWrong AnswerScore: 0


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