結果

問題 No.1564 Sum of Products of Pairs
ユーザー ryusukeryusuke
提出日時 2022-01-29 16:26:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 137 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,940 KB
実行使用メモリ 105,688 KB
最終ジャッジ日時 2024-06-10 15:56:23
合計ジャッジ時間 3,936 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,336 KB
testcase_01 AC 32 ms
52,036 KB
testcase_02 AC 36 ms
51,884 KB
testcase_03 AC 71 ms
82,852 KB
testcase_04 AC 40 ms
61,028 KB
testcase_05 AC 81 ms
88,360 KB
testcase_06 AC 67 ms
79,604 KB
testcase_07 AC 55 ms
73,084 KB
testcase_08 AC 44 ms
65,468 KB
testcase_09 AC 56 ms
73,776 KB
testcase_10 AC 80 ms
89,436 KB
testcase_11 AC 86 ms
92,724 KB
testcase_12 AC 70 ms
82,032 KB
testcase_13 AC 33 ms
52,760 KB
testcase_14 AC 34 ms
51,700 KB
testcase_15 AC 34 ms
52,520 KB
testcase_16 AC 32 ms
52,736 KB
testcase_17 AC 32 ms
51,864 KB
testcase_18 AC 103 ms
105,520 KB
testcase_19 AC 99 ms
101,004 KB
testcase_20 AC 104 ms
104,632 KB
testcase_21 AC 106 ms
105,468 KB
testcase_22 AC 99 ms
101,048 KB
testcase_23 AC 108 ms
105,688 KB
testcase_24 AC 105 ms
105,352 KB
testcase_25 AC 107 ms
104,932 KB
testcase_26 AC 105 ms
105,536 KB
testcase_27 AC 110 ms
105,556 KB
testcase_28 AC 33 ms
51,992 KB
testcase_29 AC 32 ms
51,796 KB
testcase_30 AC 32 ms
52,364 KB
testcase_31 AC 32 ms
52,828 KB
testcase_32 AC 32 ms
52,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
a.sort(reverse=True)
ans = sum(a[2 * i] * a[2 * i + 1] for i in range(n))
print(ans)
0