일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- SW ExpertAcademy
- 9095번
- 보석 쇼핑
- 어른 상어
- 키패드 누르기
- 2020 카카오 인턴십
- 1789번
- 파이썬
- 빛의 경로 사이클
- 14499번
- 15686번
- 베스트엘범
- 16234번
- 거울 설치
- python
- 스타트 택시
- 백준 알고리즘
- QueryDSL 기초
- 12869번
- HTML 기초
- 19238번
- 1038번
- 프로그래머스
- 17144번
- 감소하는 수
- SW Expert Academy
- 경주로 건설
- 미세먼지 안녕!
- 수식 최대화
- 12865번
- Today
- Total
목록SW ExpertAcademy (2)
보물창고 블로그
문제 링크:https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5Pq-OKAVYDFAUq SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com 풀이는 아래와 같습니다. t=int(input()) for test in range(1,t+1): n=int(input()) result=[['' for _ in range(3)] for _ in range(n)] mat=[] for i in range(n): mat.append(list(map(int,input().split()))) for k in range(3): mat2=[] fo..
문제 링크:https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWQl9TIK8qoDFAXj SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com 문제는 위의 링크에 나와있는 것과 같습니다. 제가 해결한 코드는 다음과 같습니다. def check(n,m,c,floor,color): global count if floor==n: if count==0: count=c elif count>c: count=c return if color==3: c+=m-map1[floor].count('W') check(n,m,c,floor+1,2) el..