結果
| 問題 | No.1564 Sum of Products of Pairs |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2021-07-09 07:32:36 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 85 ms / 2,000 ms |
| コード長 | 102 bytes |
| 記録 | |
| コンパイル時間 | 246 ms |
| コンパイル使用メモリ | 85,504 KB |
| 実行使用メモリ | 113,480 KB |
| 最終ジャッジ日時 | 2026-03-22 15:46:39 |
| 合計ジャッジ時間 | 3,517 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 30 |
ソースコード
n = int(input()) *a, = map(int,input().split()) a.sort() print(sum(a[2*i]*a[2*i+1] for i in range(n)))
convexineq