Все задачи на 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

4
uts/uts_17_aut_py/2/A.py Normal file
View File

@@ -0,0 +1,4 @@
ser = int(input())
mas = list(map(int, input().split()))
mas.sort()
print(*mas)

9
uts/uts_17_aut_py/2/B.py Normal file
View File

@@ -0,0 +1,9 @@
ser = int(input())
mas = list(map(int, input().split()))
cnt = 0
for i in range(ser):
srav = mas[i]
for j in range(i, ser):
if srav > mas[j]:
cnt += 1
print(cnt)

11
uts/uts_17_aut_py/2/C.py Normal file
View File

@@ -0,0 +1,11 @@
ser = int(input())
ner = list(map(int, input().split()))
ner.sort()
if ser % 2 != 0:
print(ner[ser // 2])
else:
ma = (ser // 2) - 1
mi = (ser // 2)
lg = ner[mi] + ner[ma]
kek = lg / 2
print(kek)

1
uts/uts_17_aut_py/2/G.py Normal file
View File

@@ -0,0 +1 @@
print(*range(1, int(input())+1))