문제출처 - 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://swexpertacademy.com/main/code/problem/problemDetail.do SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com (로그인 해야 문제를 볼 수 있어요!) 내 풀이 t = int(input()) for a in range(t): n = int(input()) direction = 0 # Right=0 Down=1 Left=2 Up=3 right, down, left, up = 0, n-1, n-1, 0 row, column = 0, 0 arr = [[0]*n for _ in range(n)] num = 1 while num = n: continue for..
문제출처 - https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV5LrsUaDxcDFAXc&categoryId=AV5LrsUaDxcDFAXc&categoryType=CODE SW Expert Academy SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요! swexpertacademy.com 틀린 풀이 t = int(input()) for a in range(t): n = int(input()) future = [int(x) for x in input().strip().split()] answer = 0 increase = 0 cnt = 0 for i in range(1, len(future)..
- Total
- Today
- Yesterday
- 백준
- 프로그래머스
- 재귀
- SW Expert
- dictionary
- 코딩테스트
- 2020 KAKAO BLIND RECRUITMENT
- C++
- Python
- 딕셔너리
- combination
- 해시
- BOJ
- 우선순위큐
- programmers
- Permutation
- 완전탐색
- 순열
- hash
- 구현
- 파이썬
- 힙
- 2019 Kakao Blind Recruitment
- 스택
- 문자열
- 문자열처리
- SWExpert
- 정렬
- left join
- 괄호
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |