{"raw_statement":[{"iden":"problem statement","content":"The six-sided dice speciality shop \"Saikoroya\" sells $N$ dice. The $i$\\-th die (singular of dice) has $A_{i,1},A_{i,2},\\ldots,A_{i,6}$ written on its each side, and has a price of $C_i$.\nTakahashi is going to choose exactly $K$ of them and buy them.\nCurrently, \"Saikoroya\" is conducting a promotion: Takahashi may roll each of the purchased dice once and claim money whose amount is equal to the square of the sum of the numbers shown by the dice. Here, each die shows one of the six numbers uniformly at random and independently.\nMaximize the expected value of (the amount of money he claims) - (the sum of money he pays for the purchased $K$ dice) by properly choosing $K$ dice to buy. Print the maximized expected value modulo $998244353$.\nDefinition of the expected value modulo $998244353$We can prove that the sought expected value is always a rational number. Moreover, under the Constraints of this problem, the sought expected value can be expressed by an irreducible fraction $\\frac{y}{x}$ where $x$ is indivisible by $998244353$.\nIn this case, we can uniquely determine the integer $z$ between $0$ and $998244352$ (inclusive) such that $xz \\equiv y \\pmod{998244353}$. Print such $z$."},{"iden":"constraints","content":"*   $1 \\leq N \\leq 1000$\n*   $1 \\leq K \\leq N$\n*   $1 \\leq C_i \\leq 10^5$\n*   $1 \\leq A_{i,j} \\leq 10^5$\n*   All values in input are integers."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$ $K$\n$C_1$ $C_2$ $\\ldots$ $C_N$\n$A_{1,1}$ $A_{1,2}$ $\\ldots$ $A_{1,6}$\n$\\vdots$\n$A_{N,1}$ $A_{N,2}$ $\\ldots$ $A_{N,6}$"},{"iden":"sample input 1","content":"3 2\n1 2 3\n1 1 1 1 1 1\n2 2 2 2 2 2\n3 3 3 3 3 3"},{"iden":"sample output 1","content":"20\n\nIf he buys the $2$\\-nd and $3$\\-rd dice, the expected value of (the amount of money he claims) - (the sum of money he pays for the purchased $K$ dice) equals $(2 + 3)^2 - (2 + 3) = 20$, which is the maximum expected value."},{"iden":"sample input 2","content":"10 5\n2 5 6 5 2 1 7 9 7 2\n5 5 2 4 7 6\n2 2 8 7 7 9\n8 1 9 6 10 8\n8 6 10 3 3 9\n1 10 5 8 1 10\n7 8 4 8 6 5\n1 10 2 5 1 7\n7 4 1 4 5 4\n5 10 1 5 1 2\n5 1 2 3 6 2"},{"iden":"sample output 2","content":"1014"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}