250x250
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
- 아이엠어바텐더
- Django
- pcce 기출문제
- date_format
- 설계
- 백준
- count
- sql
- YOLOv5
- 프로젝트
- 파이썬 슬라이싱
- GIT
- 데이터
- ORDER BY
- 프로그래머스
- List Comprehension
- SQL 고득점 Kit
- 슬라이싱
- Python3
- map
- where
- 파이썬
- python
- html
- 코딩테스트 연습
- 파이썬 몫
- Join
- Len
- css
- 단어 공부
Archives
- Today
- Total
목록공 넣기 (1)
nan + nan = 2nan
[백준][Python3] #10810. 공 넣기
코드 입력 basket_cnt, action_cnt = map(int, input().split()) # 바구니 개수만큼 0을 원소로 갖는 리스트 생성 result = [0 for _ in range(basket_cnt)] # 공을 바꾸는 횟수만큼 루프문 생성 for _ in range(action_cnt): start, end, ball_num = map(int, input().split()) # 구간 길이만큼 리스트 생성 후 값 변경 result[start-1:end] = [ball_num]*(end-(start-1)) print(' '.join(map(str, result))) 출처 : 백준 Online Judge
Python/백준 알고리즘
2024. 2. 24. 16:30