Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 파이썬 가상환경
- Python
- 트레이딩 봇 만들기
- 리눅스 rwx
- spring
- Web Service Architecture
- 변동성 돌파전략
- 단순 반복 자동화
- pybithumb
- 프로그래머스
- 빗썸 API 사용
- JSON 형식
- 파이썬 주식
- WAS란
- 즐겨찾기가 가장 많은 식당 정보 출력하기
- 리눅스 777
- WAS WebServer 차이
- Web Server란
- 리눅스
- 파이썬
- BigDecimal
- string format
- 프로그래머스 소수
- java
- 프로그래머스 SQL
- 오라클
- 와스 웹서버의 차이
- beautifulsoup
- JavaScript Obejct Notation
- JSON특징
Archives
- Today
- Total
IT 개발자_S
해커랭크 Utopian Tree 본문
반응형
1. 1년 2개의 시즌이며
2. 1년이 지나면 *2를 해주고 아닐때는 +1 수행
#!/bin/python3
import math
import os
import random
import re
import sys
# Complete the utopianTree function below.
def utopianTree(n):
h=1
for i in range(0,n ) :
print(n,i ,h)
if ( i %2 == 0) :
h *=2
else :
h +=1
return h
if __name__ == '__main__':
fptr = open(os.environ['OUTPUT_PATH'], 'w')
t = int(input())
for t_itr in range(t):
n = int(input())
result = utopianTree(n)
fptr.write(str(result) + '\n')
fptr.close()
반응형
'IT > 알고리즘_Python' 카테고리의 다른 글
해커랭크 Beautiful Days at the Movie (0) | 2020.05.06 |
---|---|
해커랭크 Angry Professor (0) | 2020.05.05 |
해커랭크 Desinger PDF Viewer (0) | 2020.03.31 |
해커랭크 The Hurdle Race (0) | 2020.03.31 |
해커랭크 Picking Numbers (0) | 2020.03.29 |
Comments