結果

問題 No.1564 Sum of Products of Pairs
ユーザー pluto77pluto77
提出日時 2021-07-16 15:11:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,412 KB
最終ジャッジ日時 2024-07-06 00:04:53
合計ジャッジ時間 5,448 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,368 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 28 ms
10,496 KB
testcase_03 AC 101 ms
19,776 KB
testcase_04 AC 36 ms
11,648 KB
testcase_05 AC 130 ms
22,972 KB
testcase_06 AC 92 ms
18,788 KB
testcase_07 AC 68 ms
15,740 KB
testcase_08 AC 49 ms
13,180 KB
testcase_09 AC 73 ms
16,376 KB
testcase_10 AC 127 ms
23,456 KB
testcase_11 AC 142 ms
24,516 KB
testcase_12 AC 104 ms
20,196 KB
testcase_13 AC 28 ms
10,368 KB
testcase_14 AC 28 ms
10,496 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 29 ms
10,368 KB
testcase_17 AC 29 ms
10,368 KB
testcase_18 AC 190 ms
29,804 KB
testcase_19 AC 178 ms
28,648 KB
testcase_20 AC 262 ms
29,824 KB
testcase_21 AC 196 ms
30,256 KB
testcase_22 AC 177 ms
28,700 KB
testcase_23 AC 192 ms
30,404 KB
testcase_24 AC 193 ms
30,280 KB
testcase_25 AC 198 ms
30,412 KB
testcase_26 AC 198 ms
30,408 KB
testcase_27 AC 190 ms
30,408 KB
testcase_28 AC 30 ms
10,496 KB
testcase_29 AC 29 ms
10,496 KB
testcase_30 AC 29 ms
10,496 KB
testcase_31 AC 30 ms
10,368 KB
testcase_32 AC 28 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1564
n=int(input())
a=list(map(int,input().split()))
b=sorted(a)
res=0
for i in range(n):
 res+=b[2*i]*b[2*i+1]
print(res)
0