일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로그래머스 순위
- 프로그래머스 순위 파이썬
- 다중 컬럼 NOT IN
- 백준 1613 역사
- 반도체 설계 파이썬
- 백준 1167 트리의 지름 파이썬
- 백준 1043 거짓말 파이썬
- 백준 11054.가장 긴 바이토닉 부분 수열
- 가장 긴 바이토닉 부분 수열 파이썬
- 게임 개발 파이썬
- 백준 1034 램프 파이썬
- 프로그래머스 베스트앨범
- 베스트앨범 파이썬
- 백준 2352 반도체 설계 파이썬
- 백준 1238 파티 파이썬
- 순위 파이썬
- 프로그래머스 여행경로
- 가장 긴 팰린드롬 파이썬
- SWEA
- 백준 1516 게임 개발
- 역사 파이썬
- 백준 2146 다리 만들기
- 프로그래머스 등굣길
- 램프 파이썬
- SQL SERVER MIGRATION
- 다리 만들기 파이썬
- SQL SERVER 장비교체
- 프로그래머스 가장 긴 팰린드롬
- 트리의 지름 파이썬
- 등굣길 파이썬
- Today
- Total
목록분류 전체보기 (224)
공부, 기록
문제링크 : https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV2b7Yf6ABcBBASw&categoryId=AV2b7Yf6ABcBBASw&categoryType=CODE SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com from itertools import combinations T=int(input()) for test in range(1,T+1): N, Height = map(int,input().split()) heightlist = list(map(int,input().split())) heights=set() ..
문제링크 : https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWqU0zh6rssDFARG&categoryId=AWqU0zh6rssDFARG&categoryType=CODE SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com T = int(input()) # 여러개의 테스트 케이스가 주어지므로, 각각을 처리합니다. for test_case in range(1, T + 1): N=int(input()) namelist=list() for i in range(N): name=input() namelist.append((name,l..
문제링크 : https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV15B1cKAKwCFAYD&categoryId=AV15B1cKAKwCFAYD&categoryType=CODE SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com from collections import deque def solution(graph, start): visited = list() queue = deque() queue.append((start,0)) visited.append(start) howlen=list() while queue: node, c..
문제링크 : https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWWxqfhKAWgDFAW4&categoryId=AWWxqfhKAWgDFAW4&categoryType=CODE SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com def solution(croaks): stack=list() croaks=list(croaks) croaklist=[0]*5 count = 0 for i in croaks: if i == "c": stack.append(i) croaklist[0]=croaklist[0]+1 count = max(coun..