일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로그래머스 코딩테스트 연습문제
- 디자인 패턴
- 브랜디
- github actions
- 스코페2021
- 클린 코드
- selenium
- 프로그래머스 코딩 테스트 연습
- WPF
- PostgreSQL
- Python
- Firefox
- Word Cloud
- heroku
- terraform
- 프로그래머스 월간 코드 챌린지
- 스프링 부트와 AWS로 혼자 구현하는 웹 서비스
- 프로그래머스 코딩테스트 연습
- Spring Boot
- PostgreSQL 설치 시 에러
- 바이오데이터 엔지니어
- 파이썬
- pycharm
- FastAPI
- Codeforces
- 프로그래머스 월간 코드 챌린지 시즌1
- 애드센스
- github
- git
- c#
- Today
- Total
목록전체 글 (103)
프로그래밍 연습하기
Codeforces Round #663 (Div. 2) A. Suborrays https://codeforces.com/contest/1391/problem/A Problem - A - Codeforces codeforces.com 문제 전문은 위 링크에서 확인하실 수 있습니다. # https://codeforces.com/contest/1391/problem/A t = int(input()) for _ in range(t): n = int(input()) print(" ".join([str(i) for i in range(1,n+1)])) 문제를 보니까 그냥 오름차순으로 하면 조건을 만족해서 오름차순으로 출력했습니다.
Codeforces Round #578 (Div. 2) A. Hotelier https://codeforces.com/contest/1200/problem/A Problem - A - Codeforces codeforces.com 문제 전문은 위 링크에서 확인하실 수 있습니다. # https://codeforces.com/contest/1200/problem/A def left(room): for idx,val in enumerate(room): if val == "0": room[idx] = "1" break return room def right(room): room = room[::-1] for idx,val in enumerate(room): if val == "0": room[idx] = "1"..
Codeforces Round #479 (Div. 3) A. Wrong Subtraction https://codeforces.com/contest/977/problem/A Problem - A - Codeforces codeforces.com 문제 전문은 위 링크에서 확인하실 수 있습니다. # https://codeforces.com/contest/977/problem/A n,k = [int(i) for i in input().split()] for _ in range(k): if n%10 == 0: n = n//10 else: n = n-1 print(n) n의 끝자리가 0이면 10으로 나눠주고, 아니면 1을 빼주는 것을 k번 반복하는 문제입니다.