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
- image generation
- video editing
- 3d editing
- 논문리뷰
- style align
- video generation
- 코테
- prompt2prompt
- Python
- ddim inversion
- 프로그래머스
- image editing
- ami lab
- image2image translation
- plug-and-play
- magdiff
- diffusion
- VirtualTryON
- transformer
- Vit
- Programmers
- 코딩테스트
- BOJ
- 3d generation
- research intern
- visiontransformer
- diffusion models
- ddpm inversion
- DP
- 네이버 부스트캠프 ai tech 6기
Archives
- Today
- Total
목록BOJ #21919 #python #소수최소공배수 #코테 (1)
평범한 필기장
[BOJ_Python] 21919_소수 최소 공배수
https://www.acmicpc.net/problem/21919 21919번: 소수 최소 공배수 수열 중에 소수는 2, 3, 5가 있다. www.acmicpc.net import sys n = int(input()) lst = list(map(int, sys.stdin.readline().split())) def od(a): if a == 1: return 0 else: for i in range(2, a): if a % i == 0: return 0 return 1 ans_lst = [] for k in lst: if od(k) == 1: ans_lst.append(k) if len(ans_lst) == 0: print(-1) else: cnt = 1 for k in ans_lst: cnt *= k..
코딩 테스트 준비/BOJ
2023. 3. 16. 12:35