結果

問題 No.1564 Sum of Products of Pairs
ユーザー convexineq
提出日時 2021-07-09 07:32:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 102 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 111,640 KB
最終ジャッジ日時 2024-07-01 13:54:24
合計ジャッジ時間 4,631 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
a.sort()
print(sum(a[2*i]*a[2*i+1] for i in range(n)))
0