HDU 1221: Cube
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 1221: Cube相关的知识,希望对你有一定的参考价值。
///@author Sycamore, ZJNU
///@accepted_on 2017-01-24
#include<iostream>
using namespace std;
int main()
{
int N;
while (cin >> N)
cout << N*N*N *(N*N*N - 1) / 2 - 3 * (N - 1)*N*N << endl;
return 0;
}
以上是关于HDU 1221: Cube的主要内容,如果未能解决你的问题,请参考以下文章