QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#707474#9177. String and NailstamirWA 1ms3736kbC++14314b2024-11-03 16:09:272024-11-03 16:09:28

Judging History

你现在查看的是最新测评结果

  • [2024-11-03 16:09:28]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3736kb
  • [2024-11-03 16:09:27]
  • 提交

answer

#include<bits/stdc++.h>
#define ll long long
#define ff first
#define ss second
using namespace std;
ll n,i;
pair<ll,ll> p[200005];
int main(){
	ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
	cin >> n;
	for(i=1;i<=n;i++) cin >> p[i].ff >> p[i].ss;
	for(i=1;i<n;i++) cout << p[i].ff << p[i].ss;
}

详细

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3736kb

input:

3
1 1
2 4
3 1

output:

1124

result:

wrong answer Token parameter [name=YES or NO] equals to "1124", doesn't correspond to pattern "[A-Za-z]+"