일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로그래머스
- select
- join
- Python
- level 3
- 티스토리챌린지
- LEVEL 2
- javascript
- 오블완
- SQL 고득점 KIT
- Java
- dfs
- 파이썬
- Lv. 0
- softeer
- SQL
- 깊이 우선 탐색
- DP
- 너비 우선 탐색
- group by
- 소프티어
- 자바스크립트
- Lv. 2
- Dynamic Programming
- bfs
- 동적계획법
- Lv. 3
- C언어
- programmers
- Lv. 1
- Today
- Total
목록전체 글 (417)
몸과 마음이 건전한 SW 개발자
favicon을 바꿀 수 있다.png, jpg 파일을 ico 확장자로 변환할 수 있다. favicon 바꾸기 1. favicon 바꾸기 파비콘은 위와 같이 탭에 있는 아이콘이나 이미지를 말한다.이 파비콘을 바꾸는 방법은 간단하다.위와 같이 favicon.ico를 원하는 이미지로 바꾸면 된다.원하는 이미지 (png, jpg 등)을 선택한다.이미지를 ico확장자로 변경한다.png ico 변환으로 구글 검색하면 쉽게 찾을 수 있다.ico로 변경한 이미지의 이름을 favicon으로 바꾼다.원래 있던 favicon과 바꿔치기 하면 끝!https://www.freeconvert.com/ko/png-to-ico ICO PNG 으로 변환기 - FreeConvert.comPNG를 ICO로 변환하는 변환기. 온라인에서 ..
문제 링크https://www.acmicpc.net/problem/12865정답 코드import sysinput = sys.stdin.readlinen, k = map(int, input().split())dp = [[0] * (k+1) for _ in range(n+1)]for i in range(1, n+1): w, v = map(int, input().split()) for j in range(1, k+1): if j >= w: dp[i][j] = max(v+dp[i-1][j-w], dp[i-1][j]) else: dp[i][j] = dp[i-1][j]print(dp[n][k])풀이 방법DP 배열의 의미:dp[i][j]dp[..
문제 링크https://www.acmicpc.net/problem/15684내 코드import sysinput = sys.stdin.readlinen, m, h = map(int, input().split())board = [[0] * (n+1) for _ in range(h+1)]for _ in range(m): row, column = map(int, input().split()) board[row][column] = column + 1 board[row][column+1] = columndef check(board, destination): c = destination for r in range(1, h+1): if board[r][c]: ..
문제 링크https://www.codetree.ai/trails/complete/curated-cards/challenge-group-same-word/description Code Tree | Learning to Code with ConfidenceA super-comprehensive, meticulously arranged Coding Learning Curriculum engineered by Algorithm Experts composed of former International Olympiad in Informatics (IOI) medalists.www.codetree.ai정답 코드import sysinput = sys.stdin.readlinen = int(input())words = ..
문제 링크https://www.codetree.ai/trails/complete/curated-cards/challenge-the-sum-of-the-elements-is-0/description Code Tree | Learning to Code with ConfidenceA super-comprehensive, meticulously arranged Coding Learning Curriculum engineered by Algorithm Experts composed of former International Olympiad in Informatics (IOI) medalists.www.codetree.ai내 코드n = int(input())A = list(map(int, input().split(..
문제 링크https://www.codetree.ai/trails/complete/curated-cards/challenge-top-k-frequent-elements/description Code Tree | Learning to Code with ConfidenceA super-comprehensive, meticulously arranged Coding Learning Curriculum engineered by Algorithm Experts composed of former International Olympiad in Informatics (IOI) medalists.www.codetree.ai정답 코드n, k = map(int, input().split())arr = list(map(int, ..