当前位置: 代码迷 >> 综合 >> hdu 2050 折线分割平面
  详细解决方案

hdu 2050 折线分割平面

热度:99   发布时间:2023-12-04 20:25:35.0
#include<iostream>
using namespace std;
int main()
{int c,n;cin>>c;while(c--){cin>>n;cout<<2*n*n-n+1<<endl;}return 0;
}