Recent Posts
Notice
No Rules Rules
중앙 이동 알고리즘 (feat. 백준, 2903번) 본문
728x90
반응형
중앙 이동 알고리즘
https://www.acmicpc.net/problem/2903
// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
#include <math.h>
using namespace std;
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N;
cin >> N;
cout << static_cast<long long>(pow(1 + pow(2, N), 2));
return 0;
}
// *&)*@*
반응형
규칙성을 갖는 형태이므로 N=3일때를 수기로 구하여 규칙을 수식으로 만들어 풀이하였습니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
계보 복원가 호석 (feat. 백준, 21276번) (0) | 2023.04.06 |
---|---|
2의 제곱인가? (feat. 백준, 11966번) (0) | 2023.04.06 |
당신은 운명을 믿나요? (feat. 백준, 27930번) (0) | 2023.04.05 |
작업 (feat. 백준, 2056번) (0) | 2023.04.04 |
진법 변환 2 (feat. 백준, 11005번) (0) | 2023.04.04 |
Comments