Please read the new rule regarding the restriction on the use of AI tools. ×

ColobocCodeforces's blog

By ColobocCodeforces, history, 5 years ago, In Russian

n = int(input()) s = [] for i in range(n): s.append([]) for u in range(n): f = list(map(int,input().split())) o = 0 for elem in f: o += 1 if elem == 1: s[u].append(o) w = list(map(int,input().split())) for op in s: for elem in op:

  • Vote: I like it
  • -21
  • Vote: I do not like it