結果

問題 No.1564 Sum of Products of Pairs
ユーザー titan23titan23
提出日時 2022-06-29 02:27:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 246 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,984 KB
最終ジャッジ日時 2024-11-21 21:38:38
合計ジャッジ時間 5,926 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 40 ms
52,480 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 170 ms
88,832 KB
testcase_04 AC 109 ms
76,804 KB
testcase_05 AC 194 ms
93,572 KB
testcase_06 AC 162 ms
87,296 KB
testcase_07 AC 136 ms
82,416 KB
testcase_08 AC 118 ms
78,464 KB
testcase_09 AC 141 ms
83,044 KB
testcase_10 AC 189 ms
93,440 KB
testcase_11 AC 204 ms
95,936 KB
testcase_12 AC 167 ms
89,600 KB
testcase_13 AC 39 ms
52,480 KB
testcase_14 AC 40 ms
52,480 KB
testcase_15 AC 40 ms
52,736 KB
testcase_16 AC 39 ms
52,352 KB
testcase_17 AC 39 ms
52,224 KB
testcase_18 AC 239 ms
105,472 KB
testcase_19 AC 233 ms
102,532 KB
testcase_20 AC 240 ms
105,536 KB
testcase_21 AC 240 ms
105,984 KB
testcase_22 AC 231 ms
102,364 KB
testcase_23 AC 244 ms
105,984 KB
testcase_24 AC 246 ms
105,600 KB
testcase_25 AC 243 ms
105,764 KB
testcase_26 AC 242 ms
105,728 KB
testcase_27 AC 244 ms
105,704 KB
testcase_28 AC 40 ms
52,480 KB
testcase_29 AC 39 ms
52,224 KB
testcase_30 AC 39 ms
52,480 KB
testcase_31 AC 39 ms
52,480 KB
testcase_32 AC 39 ms
52,480 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