using System; using System.Collections.Generic; using System.Text; public class Program { public void Proc(){ int[] inpt = Reader.GetInt(' ', true); int tekiCount = inpt[0]; int kougekiCount = inpt[1]; int[,] teki = new int[1002, 1002]; for(int i=0; i currentNum) { ans += (teki[i,j] - currentNum); } } } Console.WriteLine(ans.ToString("#########################0")); } public static void Main(string[] args) { Program prg = new Program(); prg.Proc(); } } class Reader { public static bool IsDebug = true; private static System.IO.StringReader sr; public static string ReadLine() { if(IsDebug) { if(sr == null) { sr = new System.IO.StringReader(initStr.Trim()); } return sr.ReadLine(); } else { return Console.ReadLine(); } } public static int[] GetInt(char delimiter = ' ', bool mustTrim = false) { string src = ReadLine(); if(mustTrim) { src = src.Trim(); } string[] inpt = src.Split(delimiter); int[] ret = new int[inpt.Length]; for(int i=0; i