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
- 분할메모리할당
- js to ts
- 스프링
- 토이프로젝트
- 알고리즘
- error
- 코드업
- 자료구조
- web
- 타입스크립트
- 일상
- react-redux
- Operating System
- 협업
- OS
- C++
- 공부
- 리덕스장바구니
- 백준
- Java
- CPU 스케줄링
- 파이썬
- react
- 정렬
- Redux
- 프로그래머스
- memory
- Spring
- codeup
- 기초100제
Archives
- Today
- Total
목록2981 (1)
감자튀김 공장🍟
[백준/2981] 검문 (with 파이썬)
✔ 문제 ✔ 풀이 import sys import math input = sys.stdin.readline n = int(input()) nums = [int(input()) for _ in range(n)] nums.sort() temp = [] res = [] for i in range(1, n): # A-B, B-C 저장 temp.append(nums[i] - nums[i-1]) a = temp[0] for i in range(1, len(temp)): # A-B, B-C 최대 공약수 구하기 a = math.gcd(a, temp[i]) for i in range(2, int(a ** 0.5) + 1): # 탐색 범위를 줄이기 위해 제곱근 사용 if a % i == 0: res.append(i) re..
Algorithm/BOJ
2022. 12. 18. 16:59