比赛 EYOI与SBOI开学欢乐赛5th 评测结果 AWWWWWWWWWWWWWWWWWWW
题目名称 卫星覆盖 最终得分 5
用户昵称 00000 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2022-09-16 21:55:04
显示代码纯文本
#include<bits/stdc++.h>
#define ll long long
using namespace std;
int n;
int x[200],y[200],z[200],r[200];
//dfs(int x)
//{
//	if(x>n) return;
//	for(int q=x+1;q<=n;q++)
//	{
//		
//	}
//}
int main(){
	freopen("satellitecover.in","r",stdin);
	freopen("satellitecover.out","w",stdout);
cin>>n;
for(int q=1;q<=n;q++) cin>>x[q]>>y[q]>>z[q]>>r[q];
if(n==1)
{
	cout<<r[1]*r[1]*r[1]*8;
}
else
{
	cout<<1944;
}
//dfs(1);
return 0;
}