Утнасун Муниев, 514 группа ZipInfo 16368
Панин Никита Александрович 417 ZipInfo 16122
f1import zipfilef1import zipfile
2import sys2import sys
3import io3import io
n4input_zip = sys.stdin.read()n4inp = sys.stdin.read()
5hex_to_byte = bytearray.fromhex(input_zip)5bytes_ = bytearray.fromhex(inp)
6with zipfile.ZipFile(io.BytesIO(hex_to_byte), 'r') as zp:6with zipfile.ZipFile(io.BytesIO(bytes_), 'r') as zf:
7    files = []7    files = []
t8    for i in zp.filelist:t8    for f in zf.filelist:
9        if not i.is_dir():9        if not f.is_dir():
10            files.append(i)10            files.append(f)
11    sum = 011    zsize = 0
12    for i in files:12    for f in files:
13        sum += i.file_size13        zsize += f.file_size
14    print(len(files), sum)14print(len(files), zsize)
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op