mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-22 11:56:33 +03:00
9 lines
189 B
Python
Vendored
9 lines
189 B
Python
Vendored
with open("9.txt") as f:
|
|
data = f.read().splitlines()[1:]
|
|
nums = []
|
|
for x in data:
|
|
nums += list(map(float, x.split()[1:]))
|
|
|
|
n = min(nums)
|
|
print(len([x for x in nums if x > n * 2]))
|