Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 프로그래머스
- flow matching
- image editing
- 3d generation
- rectified flow
- flipd
- inversion
- 논문리뷰
- 코테
- video generation
- diffusion
- video editing
- VirtualTryON
- segmentation map
- 3d editing
- memorization
- diffusion model
- visiontransformer
- flow models
- transformer
- Vit
- 코딩테스트
- DP
- noise optimization
- masactrl
- Python
- Programmers
- BOJ
- diffusion models
- 네이버 부스트캠프 ai tech 6기
Archives
- Today
- Total
목록17626 (1)
평범한 필기장

https://www.acmicpc.net/problem/17626 17626번: Four Squares 라그랑주는 1770년에 모든 자연수는 넷 혹은 그 이하의 제곱수의 합으로 표현할 수 있다고 증명하였다. 어떤 자연수는 복수의 방법으로 표현된다. 예를 들면, 26은 52과 12의 합이다; 또한 42 + 32 + 1 www.acmicpc.net 이 문제는 내가 아예 이해를 잘못해서 접근을 아예 잘못해서 틀렸다. import math n = int(input()) cnt = [] while True: # print(int(math.sqrt(n))) if int(math.sqrt(n)) not in cnt: cnt.append(int(math.sqrt(n))) n -= int(math.sqrt(n)) **..
코딩 테스트 준비/BOJ
2023. 3. 26. 23:29