2010年9月17日 星期五

ACM 10302 - Summation of Polynomials

#include <stdio.h>

int main()
{
long long int n, m;
while (scanf("%lld", &n) == 1)
{
n ++;
m = n * (n - 1) / 2;
printf("%lld\n", m * m);
}
return 0;
}


回目錄
回首頁

沒有留言 :

張貼留言

Related Posts Plugin for WordPress, Blogger...