-
Utopian Tree해커랭크(HackerRank) 2018. 8. 19. 17:30반응형
1. 문제
봄에는 2배로 커지고 여름에는 1씩 증가 된다.
2. 알고리즘
키워드 - 구현
3. 코드
12345678910111213141516171819202122232425262728293031#include <bits/stdc++.h>using namespace std;int utopianTree(int n) {// Complete this functionint sol = 1;for(int i =1; i<=n; i++) {if(i & 1) {sol = sol * 2;}else {sol = sol + 1;}}return sol;}int main() {int t;cin >> t;for(int a0 = 0; a0 < t; a0++){int n;cin >> n;int result = utopianTree(n);cout << result << endl;}return 0;}cs 반응형'해커랭크(HackerRank)' 카테고리의 다른 글
Picking Numbers (0) 2018.08.19 Designer PDF Viewer (0) 2018.08.19 Beautiful Days at the Movies (0) 2018.08.19 The Hurdle Race (0) 2018.08.19 Arrays - DS (0) 2018.08.19