码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1221: Cube

时间:2017-07-28 00:58:26      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:str   using   class   blog   return   more   target   style   span   

 

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

标签:str   using   class   blog   return   more   target   style   span   

原文地址:http://www.cnblogs.com/zjnu/p/7248074.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!