結果

問題 No.1564 Sum of Products of Pairs
ユーザー convexineqconvexineq
提出日時 2021-07-09 07:32:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 102 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 111,640 KB
最終ジャッジ日時 2024-07-01 13:54:24
合計ジャッジ時間 4,631 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,120 KB
testcase_01 AC 38 ms
52,204 KB
testcase_02 AC 39 ms
51,628 KB
testcase_03 AC 85 ms
85,668 KB
testcase_04 AC 46 ms
61,744 KB
testcase_05 AC 96 ms
93,016 KB
testcase_06 AC 80 ms
83,372 KB
testcase_07 AC 64 ms
73,900 KB
testcase_08 AC 56 ms
66,816 KB
testcase_09 AC 69 ms
76,548 KB
testcase_10 AC 96 ms
94,192 KB
testcase_11 AC 102 ms
98,860 KB
testcase_12 AC 82 ms
84,776 KB
testcase_13 AC 39 ms
52,308 KB
testcase_14 AC 40 ms
52,484 KB
testcase_15 AC 39 ms
52,280 KB
testcase_16 AC 39 ms
52,116 KB
testcase_17 AC 39 ms
51,948 KB
testcase_18 AC 132 ms
111,456 KB
testcase_19 AC 124 ms
107,500 KB
testcase_20 AC 131 ms
111,472 KB
testcase_21 AC 133 ms
111,028 KB
testcase_22 AC 123 ms
107,352 KB
testcase_23 AC 133 ms
111,476 KB
testcase_24 AC 132 ms
111,272 KB
testcase_25 AC 131 ms
111,372 KB
testcase_26 AC 132 ms
111,448 KB
testcase_27 AC 133 ms
111,640 KB
testcase_28 AC 39 ms
52,688 KB
testcase_29 AC 38 ms
52,508 KB
testcase_30 AC 40 ms
52,016 KB
testcase_31 AC 38 ms
52,844 KB
testcase_32 AC 39 ms
52,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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