| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- terraform
- 스코페2021
- c#
- 바이오데이터 엔지니어
- Spring Boot
- 프로그래머스 월간 코드 챌린지 시즌1
- 디자인 패턴
- FastAPI
- selenium
- 브랜디
- 프로그래머스 코딩테스트 연습
- 프로그래머스 코딩 테스트 연습
- 프로그래머스 코딩테스트 연습문제
- git
- Word Cloud
- 파이썬
- PostgreSQL
- Python
- 애드센스
- Firefox
- 클린 코드
- pycharm
- heroku
- github actions
- 스프링 부트와 AWS로 혼자 구현하는 웹 서비스
- PostgreSQL 설치 시 에러
- Codeforces
- 프로그래머스 월간 코드 챌린지
- WPF
- github
Archives
- Today
- Total
목록2021/02/06 (1)
프로그래밍 연습하기
Space Navigation
Codeforces Round #699 (Div. 2) A. Space Navigation https://codeforces.com/contest/1481/problem/A Problem - A - Codeforces codeforces.com 문제 전문은 위 링크에서 확인하실 수 있습니다. t = int(input()) for _ in range(t): px, py = [int(i) for i in input().split()] s = input() orderDict = {"U": 0, "D": 0, "R": 0, "L": 0} for i in s: orderDict[i] += 1 if 0
Codeforces
2021. 2. 6. 18:21