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
- Digital Forensics
- Database
- Forensics
- Text
- MySQL
- php
- 수학
- Incognito
- C
- 그리디 알고리즘
- SuNiNaTas
- writeup
- 인코그니토
- HackCTF
- 사칙연산
- 써니나타스
- CTF
- Web Hacking
- cryptography
- Web
- wargame
- Python
- misc
- 정렬
- xcz.kr
- 구현
- Network
- 문자열
- 백준
- N0Named
Archives
- Today
- Total
목록조합론 (2)
보안을 그리다, 훈이
[Baekjoon/Python3] 11050번 이항 계수 1
[Baekjoon/Python3] 11050번 이항 계수 1 www.acmicpc.net/problem/11050 11050번: 이항 계수 1 첫째 줄에 \(N\)과 \(K\)가 주어진다. (1 ≤ \(N\) ≤ 10, 0 ≤ \(K\) ≤ \(N\)) www.acmicpc.net # math 모듈 - factoral() 함수 사용시 import math n, k = map(int, input().split()) print(int(math.factorial(n) / (math.factorial(k) * (math.factorial(n - k))))) # factorial() 함수 구현 def factorial(a): res = 1 for i in range(1, a + 1): res *= i return..
Programming/Python & Data Structures
2020. 12. 7. 00:19