当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

1223:Order Count

题目描述
If we connect 3 numbers with "<" and "=", there are 13 cases:
1) A=B=C
2) A=B<C
3) A<B=C
4) A<B<C
5) A<C<B
6) A=C<B
7) B<A=C
8) B<A<C
9) B<C<A
10) B=C<A
11) C<A=B
12) C<A<B
13) C<B<A

If we connect n numbers with "<" and "=", how many cases then?
输入解释
The input starts with a positive integer P(0<P<1000) which indicates the number of test cases. Then on the following P lines, each line consists of a positive integer n(1<=n<=50) which indicates the amount of numbers to be connected.
输出解释
For each input n, you should output the amount of cases in a single line.
输入样例
2
1
3
输出样例
1
13


Huge input, scanf is recommended.
来自杭电HDUOJ的附加信息
Author weigang Lee
Recommend Ignatius.L

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-1223

最后修改于 2020-10-25T22:43:02+00:00 由爬虫自动更新

共提交 4

通过率 75.0%
时间上限 内存上限
2000/1000MS(Java/Others) 65536/32768K(Java/Others)