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
- map
- sql
- Django
- pcce 기출문제
- List Comprehension
- Len
- SQL 고득점 Kit
- 프로그래머스
- 백준
- 파이썬 몫
- 파이썬
- 코딩테스트 연습
- date_format
- ORDER BY
- css
- 데이터
- 파이썬 슬라이싱
- GIT
- Join
- 아이엠어바텐더
- 프로젝트
- 슬라이싱
- python
- YOLOv5
- count
- Python3
- where
- html
- 단어 공부
- 설계
Archives
- Today
- Total
목록크로아티아 알파벳 (1)
nan + nan = 2nan
[백준][Python3] #2941. 크로아티아 알파벳
코드 입력 test = input() list_cro = ['c=', 'c-', 'd-', 'lj', 'nj', 's=', 'z='] cnt = 0 while True: if len(test) >= 4: if test[:3] == 'dz=': cnt += 1 test = test[3:] elif test[:2] in list_cro: cnt += 1 test = test[2:] else: cnt += 1 test = test[1:] elif len(test) == 3: if test == 'dz=': cnt += 1 break elif test[:2] in list_cro: cnt += 1 test = test[2:] else: cnt += 1 test = test[1:] elif len(test) ==..
Python/백준 알고리즘
2023. 1. 16. 19:30