提交记录 8227
| 提交时间 |
评测时间 |
| 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;
}
| Compilation | N/A | N/A | Compile OK | Score: N/A | 显示更多 |
| Subtask #1 Testcase #1 | 32.5 us | 40 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #2 | 413.43 us | 428 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #3 | 32.98 us | 40 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #4 | 421.04 us | 428 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #5 | 32.15 us | 40 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #6 | 32.26 us | 40 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #7 | 32.49 us | 40 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #8 | 286.7 us | 296 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #9 | 423.49 us | 428 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #10 | 281.78 us | 296 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #11 | 411.49 us | 428 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #12 | 414.26 us | 428 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #13 | 32.66 us | 36 KB | Wrong Answer | Score: 0 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-04-07 04:58:53 | Loaded in 2 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠