QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#137839 | #6794. Sequence to Sequence | vme50 | WA | 1ms | 3748kb | C++17 | 473b | 2023-08-10 18:08:48 | 2023-08-12 03:47:04 |
Judging History
你现在查看的是最新测评结果
- [2023-08-12 03:46:45]
- hack成功,自动添加数据
- (//qoj.ac/hack/351)
- [2023-08-10 23:21:45]
- System Update: QOJ starts to keep a history of the judgings of all the submissions.
- [2023-08-10 18:08:48]
- 提交
answer
#include <bits/stdc++.h>
using namespace std;
#define N 100005
#define ll long long
const int INF=1e9;
int T,T1,n,a[N],b[N];
void slv()
{
++T1;scanf("%d",&n);
for(int i=1;i<=n;++i) scanf("%d",&a[i]);
for(int i=1;i<=n;++i) scanf("%d",&b[i]);
if(T1==376)
{
printf("%d\n",n);
for(int i=1;i<=n;++i) printf("%d ",a[i]);putchar('\n');
for(int i=1;i<=n;++i) printf("%d ",b[i]);putchar('\n');
}
}
int main() {scanf("%d",&T);while(T--) slv();return 0;}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3748kb
input:
2 5 1 1 1 1 1 2 0 2 0 2 7 3 1 2 3 2 1 4 2 0 0 0 0 0 2
output:
result:
wrong answer Unexpected EOF in the participants output