전체 글

PS

2292 파이썬

시간 초과 n = int(input()) cnt = 1 while True: minV = 2 + cnt*(cnt-1)*3 maxV = minV + 6*cnt if minV

PS

2231 파이썬

n = int(input()) res = 0 for i in range(n): sum = i temp = i while temp > 0: sum += temp%10 temp //= 10 if sum == n: res = i break print(res)

PS

15829 파이썬

- 초기 버전(50점) import math import sys alphabet = {'a':1, 'b':2, 'c':3, 'd':4, 'e':5, 'f':6, 'g':7, 'h':8, 'i':9, 'j':10, 'k':11, 'l':12, 'm':13, 'n':14, 'o':15, 'p':16, 'q':17, 'r':18, 's':19, 't':20, 'u':21, 'v':22, 'w':23, 'x':24, 'y':25, 'z':26} r = 31 M = 1234567891 l = int(sys.stdin.readline()) myStr = sys.stdin.readline() sum = 0 for i in range(l): sum += alphabet[myStr[i]]*math.pow(r, i) pr..

기타

QuickDBD 사용기(1)

동아리 실습에서 ERD 설계 툴인 QuickDBD를 소개받았다. 간단히 사용해 보니 UI가 굉장히 직관적이고 이뻐서 자주 사용하게 될 것 같다. QuickDBD는 다중 사용자 협업을 지원하여 실시간으로 여러 사람과 다일 다이어그램 또는 흐름도을 온라인으로 동시에 편집할 수 있는 기능도 갖추었다. 또한, QuickDBD를 통해 조직 차트 작성, 마인드 맵 및 흐름도를 이용할 수 있게 했다. command 입력 방식이라 처음에는 익숙치 않을 것 같은데 점점 익숙해질것 이라고 내 머리를 믿는다.. ERD (Entity Relationship Diagram) QuickDBD의 사용기에 대해 알아보기 전에 ERD에 대해 알아보자. Entity Relationship Diagram E-R 다이어그램이라고도 불리며 ..

dlxortmd123
개발 지식 블로그