You are viewing a single comment's thread. Return to all comments →
from itertools import product K, M = map(int, input().split()) a = [list(map(int, input().split()))[1:] for _ in range(K)] print(max([sum(map(lambda x: x**2, combo)) % M for combo in product(*a)]))
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 →