반응형
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
- HTML
- 문자열
- 초보
- implement
- 코드엔진
- Beakjoon
- C 언어
- 꾸준히
- 백준
- Python
- 설명
- C Programming
- 구현
- 10807
- 심화1
- 파이썬
- Baekjoon
- CSS
- 정리
- 10926
- Implemention
- VS
- 문제풀이
- 입문
- c언어
- 친절한 설명
- greedy
- 알고리즘
- C
- 그리디
Archives
- Today
- Total
목록분수찾기 (1)
안경잡이 구루루
백준 1193 (분수찾기) [Python/파이썬] [Implement/구현]
https://www.acmicpc.net/problem/1193 1193번: 분수찾기 첫째 줄에 X(1 ≤ X ≤ 10,000,000)가 주어진다. www.acmicpc.net 나: cnt = 1 parents =0 ex_parents = parents fraction = [] x = int(input()) while True: parents += cnt if parents >= x: break else: cnt +=1 ex_parents =parents if cnt % 2 == 0: for i in range(1,cnt+1): fraction.append(str(i)+'/'+str(cnt-i+1)) else: for i in range(cnt,0,-1): fraction.append(str(i)+'/..
파이썬(Python)/문제풀이(백준,BaekJoon)
2023. 10. 14. 16:17