結果
| 問題 | No.1564 Sum of Products of Pairs | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2021-07-20 16:48:00 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 118 ms / 2,000 ms | 
| コード長 | 107 bytes | 
| コンパイル時間 | 145 ms | 
| コンパイル使用メモリ | 82,484 KB | 
| 実行使用メモリ | 105,996 KB | 
| 最終ジャッジ日時 | 2024-07-17 13:43:55 | 
| 合計ジャッジ時間 | 4,459 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 30 | 
ソースコード
N = int(input()) A = list(map(int, input().split())) A.sort() print(sum(A[2*i]*A[2*i+1] for i in range(N)))
