Все задачи на 5.10.17 13:00

This commit is contained in:
2017-10-05 13:08:02 +03:00
parent 93746b05d7
commit ca2ca71f63
120 changed files with 2343 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import sys
from math import factorial
problem_name = str('combs')
sys.stdin = open(problem_name + ".in", "r")
#sys.stdout = open(problem_name+".out", "w")
n, k = list(map(int, input().split()))
print(int(factorial(n)/(factorial(k)*factorial(n-k))))
f = open('safdsf')
f.close()