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