結果
問題 |
No.1564 Sum of Products of Pairs
|
ユーザー |
![]() |
提出日時 | 2021-07-11 16:25:44 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 124 ms / 2,000 ms |
コード長 | 124 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 82,332 KB |
実行使用メモリ | 104,192 KB |
最終ジャッジ日時 | 2024-07-02 03:06:46 |
合計ジャッジ時間 | 4,781 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
ソースコード
n = int(input()) A = list(map(int, input().split())) A.sort() ans = 0 for i in range(n): ans += A[2*i]*A[2*i+1] print(ans)