문제출처 - https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PyTLqAf4DFAUq&categoryId=AV5PyTLqAf4DFAUq&categoryType=CODE SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com t = int(input()) for case in range(t): string = input() answer = 1 for i in range(len(string) // 2): if string[i] != string[len(string) - i - 1]: answer = 0 break print("#..
문제출처 - https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PxmBqAe8DFAUq&categoryId=AV5PxmBqAe8DFAUq&categoryType=CODE SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com t = int(input()) for case in range(t): n = int(input()) answer = 0 for i in range(1, n+1): if i % 2 == 1: answer += i else: answer -= i print("#%d" % (case+1), answer)
문제출처 - https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5P0-h6Ak4DFAUq&categoryId=AV5P0-h6Ak4DFAUq&categoryType=CODE SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com t = int(input()) for case in range(t): n = int(input()) answer = [[1]] for i in range(1, n): temp = [] for j in range(i+1): if j == 0 or j == i: temp.append(1) else: temp...
t = int(input()) for case in range(t): string = input() cnt = 1 # 패턴의 길이 pattern = "" flag = False while True: pattern = string[:cnt] # print(pattern, cnt) if cnt == 10: break for i in range(cnt, len(string), cnt): if pattern != string[i:i + cnt]: break else: flag = True break if flag: break cnt += 1 print("#%d" % (case+1), len(pattern)) 설명 처음에 pattern의 길이를 1로 했다가 점점 늘려가면서 pattern을 찾는다. 만약 입력받은 ..
문제출처 - https://swexpertacademy.com/main/code/problem/problemDetail.do SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com n = int(input()) answer = [] for num in range(1, n+1): strNum = str(num) temp = "" for i in range(len(strNum)): if strNum[i] == '3' or strNum[i] == '6' or strNum[i] == '9': temp += '-' if len(temp) == 0: # 369 없으면 answer.append(num) else: answer.ap..
문제출처 - https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5PzOCKAigDFAUq&categoryId=AV5PzOCKAigDFAUq&categoryType=CODE SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com t = int(input()) for case in range(t): n, m = map(int, input().split()) arr = [list(map(int, input().split())) for _ in range(n)] fly = 0 for i in range(n-m+1): for j in r..
문제출처 - https://www.acmicpc.net/problem/2965 2965번: 캥거루 세마리 문제 캥거루 세 마리가 사막에서 놀고 있다. 사막에는 수직선이 하나 있고, 캥거루는 서로 다른 한 좌표 위에 있다. 한 번 움직일 때, 바깥쪽의 두 캥거루 중 한 마리가 다른 두 캥거루 사이의 정수 좌표로 점프한다. 한 좌표 위에 있는 캥거루가 두 마리 이상일 수는 없다. 캥거루는 최대 몇 번 움직일 수 있을까? 입력 첫째 줄에 세 캥거루의 초기 위치 A, B, C가 주어진다. (0 < A < B < C < 100) 출력 캥거루가 최대 몇 번 움직일 수 www.acmicpc.net a, b, c = map(int, input().split()) if b - a < c - b: print(c - b -..
- Total
- Today
- Yesterday
- SW Expert
- 스택
- 문자열
- 해시
- 2020 KAKAO BLIND RECRUITMENT
- 정렬
- 프로그래머스
- 재귀
- 파이썬
- SWExpert
- C++
- left join
- 딕셔너리
- 순열
- Python
- 문자열처리
- 힙
- 코딩테스트
- combination
- 완전탐색
- 구현
- Permutation
- 2019 Kakao Blind Recruitment
- 우선순위큐
- BOJ
- programmers
- hash
- 괄호
- dictionary
- 백준
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |