結果
問題 |
No.1564 Sum of Products of Pairs
|
ユーザー |
![]() |
提出日時 | 2022-01-11 18:17:31 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 115 ms / 2,000 ms |
コード長 | 147 bytes |
コンパイル時間 | 539 ms |
コンパイル使用メモリ | 82,788 KB |
実行使用メモリ | 105,352 KB |
最終ジャッジ日時 | 2024-11-14 11:42:16 |
合計ジャッジ時間 | 4,594 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
ソースコード
n=int(input()) ns=list(map(int,input().split())) ns.sort(reverse=True) cnt=0 for i in range(1,n*2,2): cnt+=ns[i]*ns[i-1] print(cnt)