結果
| 問題 |
No.1564 Sum of Products of Pairs
|
| コンテスト | |
| ユーザー |
H20
|
| 提出日時 | 2021-06-27 16:07:32 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 114 ms / 2,000 ms |
| コード長 | 126 bytes |
| コンパイル時間 | 154 ms |
| コンパイル使用メモリ | 82,092 KB |
| 実行使用メモリ | 105,240 KB |
| 最終ジャッジ日時 | 2024-06-25 11:48:58 |
| 合計ジャッジ時間 | 3,596 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 30 |
ソースコード
N = int(input())
A = list(map(int, input().split()))
A.sort()
ans=0
for i in range(0,2*N,2):
ans+=A[i]*A[i+1]
print(ans)
H20