結果

問題 No.1564 Sum of Products of Pairs
ユーザー kazuki26kazuki26
提出日時 2021-07-11 18:37:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 168 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,680 KB
最終ジャッジ日時 2024-07-02 03:10:44
合計ジャッジ時間 5,040 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 111 ms
20,040 KB
testcase_04 AC 42 ms
11,648 KB
testcase_05 AC 142 ms
23,108 KB
testcase_06 AC 106 ms
19,048 KB
testcase_07 AC 74 ms
16,004 KB
testcase_08 AC 53 ms
13,440 KB
testcase_09 AC 80 ms
16,644 KB
testcase_10 AC 146 ms
23,548 KB
testcase_11 AC 159 ms
24,780 KB
testcase_12 AC 112 ms
20,328 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 207 ms
29,804 KB
testcase_19 AC 192 ms
29,164 KB
testcase_20 AC 210 ms
29,832 KB
testcase_21 AC 216 ms
30,516 KB
testcase_22 AC 203 ms
28,844 KB
testcase_23 AC 227 ms
30,544 KB
testcase_24 AC 221 ms
30,672 KB
testcase_25 AC 214 ms
30,548 KB
testcase_26 AC 217 ms
30,680 KB
testcase_27 AC 217 ms
30,668 KB
testcase_28 AC 30 ms
10,496 KB
testcase_29 AC 30 ms
10,624 KB
testcase_30 AC 30 ms
10,624 KB
testcase_31 AC 30 ms
10,624 KB
testcase_32 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

array = [int(x) for x in input().split()]
array = sorted(array, reverse=True)

sum = 0
for i in range(n):
	sum += array[2*i] * array[i*2+1]
print(sum)
0