首页
学习
活动
专区
圈层
工具
发布
社区首页 >专栏 >【杭电oj】1220 - Cube(数学水题)

【杭电oj】1220 - Cube(数学水题)

作者头像
FishWang
发布2025-08-26 18:34:26
发布2025-08-26 18:34:26
2110
举报

Cube

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 1768 Accepted Submission(s): 1402

Problem Description

Cowl is good at solving math problems. One day a friend asked him such a question: You are given a cube whose edge length is N, it is cut by the planes that was paralleled to its side planes into N * N * N unit cubes. Two unit cubes may have no common points or two common points or four common points. Your job is to calculate how many pairs of unit cubes that have no more than two common points. Process to the end of file.

Input

There will be many test cases. Each test case will only give the edge length N of a cube in one line. N is a positive integer(1<=N<=30).

Output

For each test case, you should output the number of pairs that was described above in one line.

Sample Input

代码语言:javascript
复制
   1
2
3

Sample Output

代码语言:javascript
复制
   0
16
297


   
    
     Hint
    Hint
   
    
The results will not exceed int type.

Author

Gao Bo

Source

杭州电子科技大学第三届程序设计大赛

观察就行了,数学题,不难。

代码如下:

代码语言:javascript
复制
#include <cstdio>
#include <algorithm>
using namespace std;
int main()
{
	int n;
	long long oppo;		//相邻的立方体数 
	long long sum;		//总方案数 
	long long ans;
	while (~scanf ("%d",&n))
	{
		if (n == 1)
		{
			printf ("0\n");
			continue;
		}
		else if (n == 2)
		{
			printf ("16\n");
			continue;
		}
		oppo = 0;
		oppo += 2 * (3 * 4 + 4 * (n-2) * 4 + (n-2) * (n-2) * 5);
		oppo += (n-2) * (4 * 4 + 5 * (n-2) * 4 + (n-2) * (n-2) * 6);
		oppo /= 2;
		n = n * n * n;
		sum = (n-1) * n / 2;
		ans = sum - oppo;
		printf ("%ld\n",ans);
	}
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Cube
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档