結果

問題 No.1564 Sum of Products of Pairs
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-08-25 09:07:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 104,828 KB
最終ジャッジ日時 2024-11-16 01:01:43
合計ジャッジ時間 4,833 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,268 KB
testcase_01 AC 39 ms
52,692 KB
testcase_02 AC 39 ms
52,296 KB
testcase_03 AC 76 ms
80,216 KB
testcase_04 AC 45 ms
61,044 KB
testcase_05 AC 89 ms
88,212 KB
testcase_06 AC 73 ms
78,944 KB
testcase_07 AC 61 ms
70,908 KB
testcase_08 AC 51 ms
64,680 KB
testcase_09 AC 64 ms
72,984 KB
testcase_10 AC 89 ms
87,444 KB
testcase_11 AC 94 ms
90,448 KB
testcase_12 AC 77 ms
80,708 KB
testcase_13 AC 38 ms
53,432 KB
testcase_14 AC 38 ms
52,220 KB
testcase_15 AC 38 ms
53,004 KB
testcase_16 AC 38 ms
52,356 KB
testcase_17 AC 38 ms
52,036 KB
testcase_18 AC 116 ms
103,392 KB
testcase_19 AC 111 ms
99,412 KB
testcase_20 AC 115 ms
104,104 KB
testcase_21 AC 116 ms
103,896 KB
testcase_22 AC 110 ms
99,000 KB
testcase_23 AC 117 ms
104,052 KB
testcase_24 AC 117 ms
103,864 KB
testcase_25 AC 117 ms
104,404 KB
testcase_26 AC 117 ms
103,700 KB
testcase_27 AC 118 ms
104,828 KB
testcase_28 AC 39 ms
53,196 KB
testcase_29 AC 38 ms
52,272 KB
testcase_30 AC 38 ms
51,880 KB
testcase_31 AC 37 ms
52,332 KB
testcase_32 AC 38 ms
51,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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