Закинул ещё мусора с Интеллекта, наверное это последнее
This commit is contained in:
9
uts/uts_17_aut_py/4/B.py
Normal file
9
uts/uts_17_aut_py/4/B.py
Normal file
@@ -0,0 +1,9 @@
|
||||
n, k = list(map(int, input().split()))
|
||||
find = tuple(map(int, input().split()))
|
||||
from itertools import combinations_with_replacement
|
||||
cnt = 0
|
||||
for i in combinations_with_replacement(range(1, n+1), k):
|
||||
if i == find:
|
||||
print(cnt)
|
||||
break
|
||||
cnt += 1
|
||||
Reference in New Issue
Block a user