| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- 프로그래머스 코딩 테스트 연습
- 프로그래머스 월간 코드 챌린지
- Codeforces
- 디자인 패턴
- 프로그래머스 월간 코드 챌린지 시즌1
- Spring Boot
- PostgreSQL
- git
- 스코페2021
- Firefox
- github actions
- terraform
- PostgreSQL 설치 시 에러
- 파이썬
- selenium
- 스프링 부트와 AWS로 혼자 구현하는 웹 서비스
- 프로그래머스 코딩테스트 연습문제
- pycharm
- 애드센스
- heroku
- 바이오데이터 엔지니어
- Word Cloud
- c#
- 클린 코드
- WPF
- FastAPI
- github
- 브랜디
- 프로그래머스 코딩테스트 연습
- Python
Archives
- Today
- Total
목록2021/02/09 (1)
프로그래밍 연습하기
New Colony
Codeforces Round #699 (Div. 2) B. New Colony https://codeforces.com/contest/1481/problem/B Problem - B - Codeforces codeforces.com 문제 전문은 위 링크에서 확인하실 수 있습니다. # https://codeforces.com/contest/1481/problem/B t = int(input()) for _ in range(t): n, k = [int(i) for i in input().split()] arr = [int(i) for i in input().split()] idx = 0 # 하나밖에 없다면 바로 사라진다 if len(arr) == 1: print(-1) else: while True: # ..
Codeforces
2021. 2. 9. 12:32