문제의 저작권은 SW Expert Academy에 있습니다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 TC= int(input()) for tc in range(1, TC+1): N = [x for x in input()] M = [x for x in input()] n_N = len(N) n_M = len(M) res = 0 for i in range(n_M-n_N+1): if N[0] == M[i]: t= 0 while t
문제의 저작권은 SW Expert Academy에 있습니다. 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 TC = int(input()) for tc in range(1, TC+1): P, A, B = map(int, input().split()) s = 1 e = P mid = 0 ca = 0 while s
문제의 저작권은 SW Expert Academy에 있습니다. 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 def powerset(n, s): # n: 원소의 갯수, s: 현재depth global K, cnt, A if s == 13 : return a = sum(A) if n == a: # Basis Part sumt = 0 for i in range(len(A)): if A[i] == 1: sumt += data[i] if sumt == K: cnt+=1 else: # Inductive Part A[s] = 1 # k번 요소 O powerset(n, s + 1) # 다음 요소 포함 여부 결정 A[s] ..
문제의 저작권은 SW Expert Academy에 있습니다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 TC= int(input()) for tc in range(1, TC+1): N = int(input()) data= [[0]*10 for _ in range(10)] for _ in range(N): r1, c1, r2, c2, color = map(int, input().split()) for i in range(r1, r2+1): for j in range(c1, c2+1): data[i][j] |= color cnt = 0 for p in range(10): for q in range(10): if data[p][q] == 0b11: cnt += 1 prin..
문제의 저작권은 SW Expert Academy에 있습니다. 구간합 _ python 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 TC = int(input()) for tc in range(1, TC+1): N, M = map(int, input().split()) data = list(map(int, input().split())) minV = 1000000 maxV = 0 for i in range(N-M+1): sum = 0 for j in range(M): sum+= data[i+j] if minV > sum: minV = sum if maxV
문제의 저작권은 SW Expert Academy에 있습니다. 처음 python을 배우신 분들이 이해하기 쉽도록 풀이를 적었습니다. 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 TC = int(input()) for tc in range(1, TC+1): K, N, M = map(int, input().split()) data = list(map(int, input().split())) + [N+K, N+K] #N 종점 K 이동가능 M 정류장 개수 here = 0 #내위치 i = 0 #정류장위치 cnt = 0 #기름 넣을때 마다 +1 while here + K = data[i+2]: here = ..
문제의 저작권은 SW Expert Academy에 있습니다. 숫자 카드 _ python 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 T = int(input()) for tc in range(1, T + 1): a = int(input()) data = list(map(int, input())) maxV = 0 cnt = 0 num = [0]*10 for i in data: num[i] += 1 for j in range(len(num)): if maxV
문제의 저작권은 SW Expert Academy에 있습니다. min max _ python 1 2 3 4 5 6 7 8 9 10 11 12 TC = int(input()) for tc in range(1, TC+1): N = int(input()) data = list(map(int, input().split())) minV = 1000000 maxV = 1 for i in data: if i maxV: maxV = i print("#%d %d"%(tc, maxV-minV)) cs data = list(map(int, input().split())) input으로 받는 모든 값들은 문자열로 받습니다. 따라서 map을 이용해서 int로 바꾸는 과정을 거쳐야 숫자로 쓸 수 있습니다. 이 부분의 뜻은 들어온 ..
- Total
- Today
- Yesterday
- mongoDB
- TensorFlow
- Queue
- UserCreationForm
- BFS
- login
- django
- Express
- Deque
- react autoFocus
- Python
- JavaScript
- next.config.js
- Vue
- 자료구조
- error:0308010C:digital envelope routines::unsupported
- logout
- nodejs
- react
- nextjs autoFocus
- 클라우데라
- useState
- pandas
- DFS
- useHistory 안됨
- 자연어처리
- read_csv
- NextJS
- vuejs
- typescript
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |