| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 프로그래머스 코딩 테스트 연습
- heroku
- 프로그래머스 월간 코드 챌린지 시즌1
- Spring Boot
- Word Cloud
- pycharm
- git
- 디자인 패턴
- WPF
- 애드센스
- 프로그래머스 코딩테스트 연습문제
- PostgreSQL 설치 시 에러
- Python
- 바이오데이터 엔지니어
- 스코페2021
- 브랜디
- selenium
- terraform
- github actions
- 프로그래머스 코딩테스트 연습
- Firefox
- 스프링 부트와 AWS로 혼자 구현하는 웹 서비스
- github
- FastAPI
- PostgreSQL
- Codeforces
- 프로그래머스 월간 코드 챌린지
- 파이썬
- c#
- 클린 코드
- Today
- Total
목록2021/01/31 (2)
프로그래밍 연습하기
Codeforces Round #698 (Div. 2) B. Nezzar and Lucky Number https://codeforces.com/contest/1478/problem/B Problem - B - Codeforces codeforces.com 문제 전문은 위 링크에서 확인하실 수 있습니다. # https://codeforces.com/contest/1478/problem/B def lucky(n, d): if str(d) in str(n): return True else: return False n = int(input()) for _ in range(n): q,d = [int(i) for i in input().split()] arr = [int(i) for i in input().spl..
Codeforces Round #698 (Div. 2) A. Nezzar and Colorful Balls https://codeforces.com/contest/1478/problem/A Problem - A - Codeforces codeforces.com 문제 전문은 위 링크에서 확인하실 수 있습니다. # https://codeforces.com/contest/1478/problem/A ans = [] n = int(input()) for _ in range(n): length = int(input()) arr = [int(i) for i in input().split()] maxv = 0 for i in range(1,length+1): if maxv