ORIGIN

CodeForces-1180A Alex and a Rhombus

ACM 1 mins297 words
A. Alex and a Rhombus
time limit per test: 1 second
memory limit per test: 256 megabytes
input: standard input
output:standard output

Problem

While playing with geometric figures Alex has accidentally invented a concept of a n-th order rhombus in a cell grid.

A 1-st order rhombus is just a square 1×1 (i.e just a cell).

A nn-th order rhombus for all n≥2 one obtains from a n−1-th order rhombus adding all cells which have a common side with it to it (look at the picture to understand it better).

img

Alex asks you to compute the number of cells in a n-th order rhombus.

Input

The first and only input line contains integer nn (1≤n≤100) — order of a rhombus whose numbers of cells should be computed.

Output

Print exactly one integer — the number of cells in a nn-th order rhombus.

Examples

Input

PLAINTEXT
1
1

Output

PLAINTEXT
1
1

Input

PLAINTEXT
1
2

Output

PLAINTEXT
1
5

Input

PLAINTEXT
1
3

Output

PLAINTEXT
1
13

Note

Images of rhombus corresponding to the examples are given in the statement.

Analysis

This problem has a regular formula. First you count the outermost layer has how many squares. Then the second outermost layer. Until the second smallest layer.

So we add them up. Imagine we have a nth order rhombus in a cell grid. The nth rhombus has n1 layers.

So the total square except the center square is:
(4n4)+(4(n1)4)++2×44\=4(n1+n2++1)\=2×(n1)n


So the final answer is 2×(n1)n+1 .

Code

C++
1
2
3
4
5
6
7
8
9
10
#include<bits/stdc++.h>

using namespace std;

int main() {
int n;
cin >> n;
cout << 2 * n * (n - 1) + 1 << endl;
return 0;
}
Powered By Valine
v1.5.1
TOP
COMMENT
  • ABOUT
  • |
o_oyao
  The Jigsaw puzzle is incomplete with even one missing piece. And I want to be the last piece to make the puzzle complete.
Like my post?
Default QR Code
made with ❤️ by o_oyao
©o_oyao 2019-2025

|
Preview