COUNTREG - editorial

PROBLEM LINK:

Practice
Contest

DIFFICULTY:

EASY.

PREREQUISITES:

Math .

PROBLEM:

Ravi and vishal are playing Quiz in them, it’s turn of vishal to ask question to Ravi, so the question of Vishal is

" You have given n number of V shaped Rods. you can arrange them in any way (two V shaped roads may or not intersect each other) you can bisect them or join them in a perpendicular or Parallel way. Your task is to answer maximum possible number of region we can create by arranging n number of rods in different manners "

So help Ravi to answer a question….
( check explanation for hint )

EXPLANATION:

you have given n number of roads , you have to just print ((2nn)-n+1) .

SOLUTIONS:

Setter's Solution

#include
using namespace std;

int main() {
long int m;
cin>>m;

for(int i=0;i<m;i++)
{
long int n;
cin>>n;
long long int d=((2*n*n)-n+1);
cout<<d<<"\n";
}
return 0;

}

Tester's Solution

cook your dish here

t=int(input())
for i in range(t):
n=int(input())
s=2*(n**2)-n+ 1
print (s)