提交记录 8225
| 提交时间 |
评测时间 |
| 2019-02-03 17:34:08 |
2020-08-01 01:14:07 |
#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;
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.37 us | 40 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #2 | 419.21 us | 428 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #3 | 39.33 us | 40 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #4 | 421.41 us | 428 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #5 | 34.73 us | 40 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #6 | 32.47 us | 40 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #7 | 32.76 us | 40 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #8 | 289.02 us | 296 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #9 | 420.85 us | 428 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #10 | 282.61 us | 296 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #11 | 410.14 us | 428 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #12 | 412.18 us | 428 KB | Wrong Answer | Score: 0 | 显示更多 |
| Subtask #1 Testcase #13 | 31.98 us | 36 KB | Wrong Answer | Score: 0 | 显示更多 |
Judge Duck Online | 评测鸭在线
Server Time: 2026-04-07 04:59:50 | Loaded in 2 ms | Server Status
个人娱乐项目,仅供学习交流使用 | 捐赠