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 | 31 |
Tags
- 네이버 부스트캠프 ai tech 6기
- diffusion model
- emerdiff
- segmenation map generation
- BOJ
- 논문리뷰
- transformer
- Python
- image editing
- segmentation map
- score distillation
- 3d generation
- inversion
- Vit
- 코테
- 3d editing
- video editing
- diffusion
- rectified flow
- flow matching
- diffusion models
- Programmers
- 코딩테스트
- video generation
- VirtualTryON
- visiontransformer
- dreammotion
- masactrl
- 프로그래머스
- DP
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