結果

問題 No.1564 Sum of Products of Pairs
コンテスト
ユーザー titan23
提出日時 2022-06-29 02:27:37
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 274 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 142 ms
コンパイル使用メモリ 84,992 KB
実行使用メモリ 110,720 KB
最終ジャッジ日時 2026-05-16 01:15:53
合計ジャッジ時間 4,596 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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