結果
| 問題 |
No.1564 Sum of Products of Pairs
|
| コンテスト | |
| ユーザー |
hiragn
|
| 提出日時 | 2022-11-25 17:52:21 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 145 ms / 2,000 ms |
| コード長 | 198 bytes |
| コンパイル時間 | 168 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 30,556 KB |
| 最終ジャッジ日時 | 2024-10-02 00:54:14 |
| 合計ジャッジ時間 | 4,371 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 30 |
ソースコード
def main():
n = int(input())
a = sorted(list(map(int, input().split())))
ans = sum([a[i] * a[i + 1] for i in range(0, 2 * n, 2)])
print(ans)
if __name__ == "__main__":
main()
hiragn