컴공생의 다이어리
[파이썬, Python] 백준 1193번 : 분수찾기 본문
백준 2292번 : 벌집
내 코드
x=int(input())
line=1
while True:
if x<=sum(range(1,line+1)):
break
line+=1
line_seq = x-sum(range(1,line))
if line % 2==0: # 짝수 라인
a = line_seq #분모
b = line+1-line_seq#분자
else: # 홀수 라인
a = line+1-line_seq #분모
b = line_seq #분자
print("{}/{}".format(a,b))
728x90
'Development > Algorithm & Coding Test' 카테고리의 다른 글
[파이썬, Python] 백준 2839번 : 설탕 배달 (0) | 2021.06.10 |
---|---|
[파이썬, Python] 백준 2869번 : 달팽이는 올라가고 싶다 (0) | 2021.06.09 |
[파이썬, Python] 백준 2292번 : 벌집 (0) | 2021.06.05 |
[파이썬, Python] 백준 1712번 : 손익분기점 (0) | 2021.05.31 |
[파이썬, Python] 백준 1316번 : 그룹 단어 체커 (0) | 2021.05.31 |
Comments