1648切蛋糕
Posted SomnusMistletoe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1648切蛋糕相关的知识,希望对你有一定的参考价值。
题意:将一球形蛋糕切N刀,最多可切多少块。
分析:推规律
1 #include<iostream> 2 #include<cstdio> 3 #include<string> 4 #include<cstring> 5 #include<set> 6 #include<map> 7 #include<algorithm> 8 #include<cstdlib> 9 #include<vector> 10 #include<cmath> 11 #include<sstream> 12 using namespace std; 13 int main() 14 { 15 int T; 16 scanf("%d", &T); 17 while(T--) 18 { 19 int n; 20 scanf("%d", &n); 21 printf("%d\n", (n * n * n + 5 * n) / 6 + 1); 22 } 23 return 0; 24 }
以上是关于1648切蛋糕的主要内容,如果未能解决你的问题,请参考以下文章