일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 99항해
- 코딩테스트 준비
- 백준 2309
- 개발자 취업
- 스택
- 알고리즘
- BFS
- 항해99
- easy 딥러닝
- Python
- 코딩테스트준비
- 해시
- boj 2309
- 구현
- 딥러닝
- 파이썬
- 활성화 함수
- 개발자취업
- softeer
- til
- 99클럽
- BOJ
- python 2309
- leetcode
- 기능개발
- 혁펜하임
- dfs
- 백준
- 큐
- 프로그래머스
- Today
- Total
목록2025/02/19 (2)
동까의 코딩
https://www.acmicpc.net/problem/17609 from sys import stdininput = stdin.readlinenum = int(input())for _ in range(num): st = input().strip() front, back = 0, len(st) - 1 check = 0 for _ in range(len(st)): if front >= back: break if st[front] == st[back]: front += 1 back -= 1 continue if st[front] == st[back-1]: ..
https://www.acmicpc.net/problem/11404 import sysINF = int(1e9)n = int(sys.stdin.readline()) m = int(sys.stdin.readline()) graph = [[INF] * (n + 1) for _ in range(n + 1)] for i in range(1, n + 1): for j in range(1, n + 1): if i == j: graph[i][j] = 0for _ in range(m): a, b, c = map(int, sys.stdin.readline().split()) graph[a][b] = min(c, graph[a][b]) for k in range(..