ZipInfo/biryukov.andrej
ZipInfo/s02190164
t1import zipfilet1import zipfile
2import sys2import sys
3import io3import io
4with zipfile.ZipFile(io.BytesIO(bytearray.fromhex(sys.stdin.read())), 'r') as zipalp:4with zipfile.ZipFile(io.BytesIO(bytearray.fromhex(sys.stdin.read())), 'r') as zipalp:
5    zipff = filter(lambda x: not x.is_dir(), zipalp.filelist)5    zipff = filter(lambda x: not x.is_dir(), zipalp.filelist)
6    not_dir = list(zipff)6    not_dir = list(zipff)
7    print(len(not_dir), end=' ')7    print(len(not_dir), end=' ')
8    print(sum(map(lambda x: x.file_size, not_dir)))8    print(sum(map(lambda x: x.file_size, not_dir)))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op