結果

問題 No.1564 Sum of Products of Pairs
ユーザー titan23titan23
提出日時 2022-06-29 02:27:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 106,368 KB
最終ジャッジ日時 2024-05-01 16:26:50
合計ジャッジ時間 5,611 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 42 ms
52,864 KB
testcase_02 AC 42 ms
52,736 KB
testcase_03 AC 165 ms
88,960 KB
testcase_04 AC 104 ms
77,184 KB
testcase_05 AC 182 ms
93,384 KB
testcase_06 AC 156 ms
87,440 KB
testcase_07 AC 133 ms
82,280 KB
testcase_08 AC 111 ms
78,464 KB
testcase_09 AC 139 ms
83,200 KB
testcase_10 AC 176 ms
93,952 KB
testcase_11 AC 187 ms
96,212 KB
testcase_12 AC 149 ms
89,344 KB
testcase_13 AC 36 ms
52,224 KB
testcase_14 AC 35 ms
52,096 KB
testcase_15 AC 36 ms
52,864 KB
testcase_16 AC 35 ms
52,608 KB
testcase_17 AC 34 ms
52,608 KB
testcase_18 AC 219 ms
105,480 KB
testcase_19 AC 212 ms
102,784 KB
testcase_20 AC 221 ms
105,652 KB
testcase_21 AC 220 ms
106,112 KB
testcase_22 AC 214 ms
102,784 KB
testcase_23 AC 227 ms
105,956 KB
testcase_24 AC 227 ms
106,152 KB
testcase_25 AC 229 ms
106,096 KB
testcase_26 AC 229 ms
106,368 KB
testcase_27 AC 231 ms
105,980 KB
testcase_28 AC 37 ms
52,352 KB
testcase_29 AC 36 ms
52,096 KB
testcase_30 AC 37 ms
52,096 KB
testcase_31 AC 38 ms
52,608 KB
testcase_32 AC 37 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import heapify, heappush, heappop
input = lambda: sys.stdin.readline().rstrip()

#  -----------------------  #

n = int(input())
hq = list(map(int, input().split()))
heapify(hq)

ans = 0
for _ in range(n):
  ans += heappop(hq) * heappop(hq)
print(ans)
0