ZipInfo/Stephan
ZipInfo/Agafonova525
f1import sysf1import sys
2import io2import io
3import zipfile3import zipfile
44
n5g = 0n5sum = 0
6h = 06cnt = 0
7for zinfo in zipfile.ZipFile(7for zinfo in zipfile.ZipFile(
8    io.BytesIO(8    io.BytesIO(
9        bytes.fromhex(9        bytes.fromhex(
10            sys.stdin.read()))).filelist:10            sys.stdin.read()))).filelist:
n11    g += zinfo.file_sizen11    sum += zinfo.file_size
12    h += 0 if zinfo.is_dir() else 112    cnt += 0 if zinfo.is_dir() else 1
13print(h, g)
1413
tt14print(cnt, sum)
15 
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op