qwlake's Blog

어서오세요, 반갑습니다 :)

백준 2178번 - 미로 탐색

2178 - 미로 탐색 1. 개요 https://www.acmicpc.net/problem/2178 2. 코드 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 32 33 34 35 import sys from collections import ...

백준 5430번 - AC

5430 - AC 1. 개요 https://www.acmicpc.net/problem/5430 2. 코드 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 32 33 34 import sys T = int(sys.stdin.readline()....

백준 4889번 - 안정적인 문자열

4889 - 안정적인 문자열 1. 개요 https://www.acmicpc.net/problem/4889 2. 코드 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 import sys n = 1 while True: arr = sys.stdin.readline().strip() if arr[...

백준 2493번 - 탑

2493 - 탑 1. 개요 https://www.acmicpc.net/problem/2493 2. 코드 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 import sys sys.stdin.readline() arr = list(map(int, sys.stdin.readline().split())) ret = ...

백준 5397번 - 키로거

5397 - 키로거 1. 개요 https://www.acmicpc.net/problem/5397 2. 코드 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 import sys n = int(sys.stdin.readline()) for i in range(n): line = list(sys.stdin.read...

백준 1158번 - 요세푸스 문제

1158 - 요세푸스 문제 1. 개요 https://www.acmicpc.net/problem/1158 2. 코드 Linked List 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 32 33 34 35 36 37 38 39 40 41 42 ...

백준 10845번 - 큐

10845 - 큐 1. 개요 https://www.acmicpc.net/problem/10845 2. 코드 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 import sys n = int(sys.stdin.readline().strip()) arr = [] fo...

백준 10845번 - 스택

10845 - 스택 1. 개요 https://www.acmicpc.net/problem/10828 2. 코드 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 import sys n = int(sys.stdin.readline().strip()) arr = [] for _ in range(n...

[CircleCI] 장고 프로젝트에 Circle CI 적용하기 (feat. Django, docker-compose)

서론 지난번에 Django 프로젝트에 pytest를 붙인 적이 있다 ([Django] pytest를 사용한 장고 테스트 환경 구축). 이를 이용한 지속적 통합(CI) 환경을 구축해 보고자 한다. CI(Continuous Integration)란? CI가 눈에 익지 않다면 이것은 어떤가. CI/CD. 많이 봤을 것이다. CI/CD는 Redhat의 ...

백준 1475번 - 방 번호

1475 - 방 번호 1. 개요 https://www.acmicpc.net/problem/1475 2. 코드 1 2 3 4 5 6 7 8 9 import sys, math # N = sys.stdin.readline() # 왜 런타임 에러?.. N = input() arr = [0,]*10 for i in N: arr[int(i)] +...