{"problem":{"name":"D. MaratonIME in the golden moment","description":{"content":"It is a common knowledge the importance in practicing a physical activity, mainly when you take part in ICPC competitions. Keeping this in mind, Giovana Delfino invited her friends from MaratonIME to ","description_type":"Markdown"},"platform":"Codeforces","limit":{"time_limit":2000,"memory_limit":262144},"difficulty":"None","is_remote":true,"is_sync":true,"sync_url":null,"sign":"CF10137D"},"statements":[{"statement_type":"Markdown","content":"It is a common knowledge the importance in practicing a physical activity, mainly when you take part in ICPC competitions. Keeping this in mind, Giovana Delfino invited her friends from MaratonIME to go rowing.\n\nThe initial total ability of the boat is 0. Despite the equal enthusiasm of all members, each friend i has a physical ability h(i). Dear teacher Gabi knows that whenever two friends x and y are together in the boat, the boat's total ability is increased by h(x)·h(y).\n\nGiovana invited n friends, but rowing is not always possible when you have programming assignments and exams of the great professor Arnaldo Mandel ahead, so sometimes not everyone shows up. However, the teacher Gabi is very optimistic and hopes that, for the final semester competition, all n friends will attend in order to increase MaratonIME odds. Help Gabi find the total ability of the boat in this possible golden moment, assuming all friends show up.\n\nThe first line contains one integer n (1 ≤ n ≤ 105) - the number of friends invited to row.\n\nThe second line contains n integers h1, h2, ..., hn (1 ≤ hi ≤ 3·104) - the abilities of each member.\n\nPrint one integer - the boat's total ability in the golden moment.\n\nIn the first example, in the golden moment there will be two members on the boat, then the ability there will be 5 × 10 = 50.\n\n## Input\n\nThe first line contains one integer n (1 ≤ n ≤ 105) - the number of friends invited to row.The second line contains n integers h1, h2, ..., hn (1 ≤ hi ≤ 3·104) - the abilities of each member.\n\n## Output\n\nPrint one integer - the boat's total ability in the golden moment.\n\n[samples]\n\n## Note\n\nIn the first example, in the golden moment there will be two members on the boat, then the ability there will be 5 × 10 = 50.","is_translate":false,"language":"English"},{"statement_type":"Markdown","content":"**Definitions**  \nLet $ n \\in \\mathbb{Z}^+ $ be the number of friends.  \nLet $ h = (h_1, h_2, \\dots, h_n) $ be a sequence of positive integers representing the physical abilities of the friends.  \nThe initial boat ability is $ 0 $.\n\n**Constraints**  \n1. $ 1 \\leq n \\leq 10^5 $  \n2. $ 1 \\leq h_i \\leq 3 \\cdot 10^4 $ for all $ i \\in \\{1, \\dots, n\\} $\n\n**Objective**  \nCompute the total boat ability when all $ n $ friends are present, where the ability increases by $ h_i \\cdot h_j $ for every unordered pair $ \\{i, j\\} $ with $ i < j $. That is:  \n$$\n\\sum_{1 \\leq i < j \\leq n} h_i \\cdot h_j\n$$","is_translate":false,"language":"Formal"}],"meta":{"iden":"CF10137D","tags":[],"sample_group":[],"created_at":"2026-03-03 11:00:39"}}