You are viewing a single comment's thread. Return to all comments →
from itertools import product K,M = map(int,input().split()) N = (list(map(int, input().split()))[1:] for _ in range(K)) results = map(lambda x: sum(i**2 for i in x)%M, product(*N)) print(max(results))
Seems like cookies are disabled on this browser, please enable them to open this website
Maximize It!
You are viewing a single comment's thread. Return to all comments →