QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#803668#9870. Itemsucup-team3510#RE 0ms0kbC++20182b2024-12-07 17:58:532024-12-07 17:58:55

Judging History

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

  • [2024-12-08 20:33:10]
  • hack成功,自动添加数据
  • (/hack/1273)
  • [2024-12-07 17:58:55]
  • 评测
  • 测评结果:RE
  • 用时:0ms
  • 内存:0kb
  • [2024-12-07 17:58:53]
  • 提交

answer

#include<iostream>
using namespace std;
int main()
{
int T,n,m,a[2];
	cin>>T;
	while(T--)
	{
		cin>>n>>m;
		for(int i=1;i<=n;i++)
		{
			cin>>a[i];
		}
	}
	return 0;
}

详细

Test #1:

score: 0
Runtime Error

input:

4
5 25
0 0 0 0 5
5 11
4 4 4 5 5
5 0
1 2 3 4 5
5 25
0 1 2 3 4

output:


result: