Арефьев Вениамин 528 ZipInfo 15743 | Роман Селевенко, 619/2 группа ZipInfo 15877 | ||||
---|---|---|---|---|---|
f | 1 | import re | f | 1 | import re |
2 | import zipfile | 2 | import zipfile | ||
3 | import io | 3 | import io | ||
4 | import sys | 4 | import sys | ||
t | 5 | file = zipfile.ZipFile(io.BytesIO(bytes.fromhex(re.sub('\\s', '', sys.stdin.read()))), 'r') | t | 5 | archive = zipfile.ZipFile(io.BytesIO(bytes.fromhex(re.sub('\\s', '', sys.stdin.read()))), 'r') |
6 | print(f'{sum(map(lambda x: not x.is_dir(), file.infolist()))} {sum(map(lambda x: x.file_size, file.infolist()))}') | 6 | print(f'{sum(map(lambda file: not file.is_dir(), archive.infolist()))} {sum(map(lambda size: size.file_size, archive.infolist()))}') |
Legends | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
|