比赛 2025.6.7 评测结果 WWW
题目名称 Bookface 最终得分 0
用户昵称 李奇文 运行时间 1.186 s
代码语言 C++ 内存使用 4.10 MiB
提交时间 2025-06-07 09:49:41
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
const int N=200005;
int t,n,d,a[N];
int main(){
	freopen("Bookface.in","r",stdin);
	freopen("Bookface.out","w",stdout);
	cin>>t;
	int b[3]={0,6,16},i=1;
	while(t--){
		cin>>n>>d;
		for(int j=1;j<=n;j++){
			cin>>a[j];
		}
		cout<<b[i]<<endl;
		i++;
	}
	return 0;
}