比赛 2024.5.23练习赛 评测结果 WWWWWWWWAA
题目名称 Rotate Columns 最终得分 20
用户昵称 Untitled 运行时间 0.008 s
代码语言 C++ 内存使用 0.57 MiB
提交时间 2024-05-23 19:15:56
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;

int T,n,m,a[410],res;

bool cmp(int a,int b){
	return a>b;
}

int main(){
	freopen("happygameT1.in","r",stdin);
	freopen("happygameT1.out","w",stdout);
	
	scanf("%d",&T);
	for (int x=1;x<=T;x++){
		res=0;
		scanf("%d %d",&n,&m);
		for (int i=1;i<=n*m;i++) scanf("%d",&a[i]);
		sort(a+1,a+n*m+1,cmp);
		for (int i=1;i<=n;i++) res+=a[i];
		printf("%d\n",res);
	}
	
	return 0;
}