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 |
Tags
- 와스 웹서버의 차이
- 트레이딩 봇 만들기
- 즐겨찾기가 가장 많은 식당 정보 출력하기
- WAS WebServer 차이
- Python
- 프로그래머스 SQL
- java
- Web Server란
- beautifulsoup
- spring
- Web Service Architecture
- 빗썸 API 사용
- JSON 형식
- WAS란
- JavaScript Obejct Notation
- 프로그래머스
- string format
- JSON특징
- 리눅스 rwx
- 오라클
- 리눅스
- pybithumb
- 단순 반복 자동화
- 변동성 돌파전략
- 파이썬 가상환경
- 파이썬 주식
- 리눅스 777
- BigDecimal
- 파이썬
- 프로그래머스 소수
Archives
- Today
- Total
목록해커랭크 Utopian Tree (1)
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()) res..
IT/알고리즘_Python
2020. 4. 2. 22:40