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
- plug-and-play
- style align
- 네이버 부스트캠프 ai tech 6기
- 코테
- magdiff
- video generation
- research intern
- transformer
- ami lab
- ddpm inversion
- 프로그래머스
- ddim inversion
- image generation
- 논문리뷰
- video editing
- 3d generation
- Programmers
- DP
- 3d editing
- BOJ
- prompt2prompt
- 코딩테스트
- visiontransformer
- Vit
- image editing
- Python
- diffusion models
- image2image translation
- diffusion
- VirtualTryON
Archives
- Today
- Total
목록17626 (1)
평범한 필기장
[BOJ_Python] 17626_Four Squares
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