✏️ 문제
문제 파악
이 문제는 규칙을 찾는 게 진짜 중요한 문제이다..
알고리즘
- 구현
- 수학
코드
x = int(input())
line = 1
while x > line:
x -= line
line += 1
if line % 2 == 0:
child = x
parents = line - x + 1
else:
child = line - x + 1
parents = x
print(child, '/', parents, sep='')
'PS > 백준' 카테고리의 다른 글
[Python] 15686번 치킨 배달 (0) | 2024.10.30 |
---|---|
[Python] 14502번 연구소 (0) | 2024.10.30 |
[Python] 1966번 프린터 큐 (0) | 2024.10.30 |
[Python] 2193번 이친수 (1) | 2024.09.15 |
[Python] 1904번 01타일, 자세한 설명, 그림 참조 (0) | 2024.09.15 |