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
- c++ 정규식
- influxdb 설치
- c3 second
- c3 축 없애기
- python subprocess
- 1697
- telegraf
- semanage
- python popen
- gcc regex
- 정규식 문자열 출력
- c3 step graph
- 정규식 컴파일
- 백준
- g++ 업데이트
- c3 초
- InfluxDB
- regex_search
- snmp
- CentOS7
- python os
- subporcess path
- linux시간으로 변경
- snmp test
- 정규식 활용
- gcc 업데이트
- c3 축 가리기
- selinux port 등록
- grafana dashboard
- centos pyhon 설치
Archives
- Today
- Total
리셋 되지 말자
알고리즘 라이브러리 기록용 본문
최대공약수, 최대공배수 - 관련문제 백준 2609
import math
a, b = map(int, input().split())
print(math.gcd(a,b))
print(math.lcm(a,b))
입력속도 빠르게
import sys
n = int(sys.stdin.readline())
combinations, permutations, product, combinations_with_replacement
from itertools import combinations, permutations
n, m = map(int, input().split())
arr = list(map(int, input().split()))
max_sum = 0
for c in combinations(arr, 3):
sum_c = sum(c)
if sum_c <= m:
max_sum = max(max_sum, sum_c)
print(max_sum)
###
product(arr, repeat=2)
combinations_with_replacement(arr, 2)
개수세기
from collections import Counter
l = [1, 2, 3]
cd = Counter(l)
팩토리얼
from math import factorial
n, k = map(int, input().split())
result = (factorial(n) // factorial(n-k)) // factorial(k)
print(result)
올림, 내림, 반올림
ceil()
floor()
round()
round() = floor(num+0.5)
'Python' 카테고리의 다른 글
[pypi] 로컬 pypi 서버 구성 (private pypi) (0) | 2021.12.20 |
---|---|
fileLock 을 이용한 다중 프로세스 접근 제어 (0) | 2021.11.11 |
[스크랩] Python의 fileinput module로 파일 수정하는 방법 (0) | 2021.10.14 |
[python 공부] 소수 반올림, 올림, 버림 (0) | 2021.07.03 |
정렬 (0) | 2021.06.13 |
Comments