結果

問題 No.1564 Sum of Products of Pairs
ユーザー roarisroaris
提出日時 2021-07-20 16:48:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 107 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 105,996 KB
最終ジャッジ日時 2024-07-17 13:43:55
合計ジャッジ時間 4,459 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,684 KB
testcase_01 AC 37 ms
52,164 KB
testcase_02 AC 37 ms
53,060 KB
testcase_03 AC 83 ms
81,548 KB
testcase_04 AC 46 ms
61,780 KB
testcase_05 AC 88 ms
88,428 KB
testcase_06 AC 75 ms
79,764 KB
testcase_07 AC 62 ms
72,248 KB
testcase_08 AC 53 ms
67,024 KB
testcase_09 AC 64 ms
73,280 KB
testcase_10 AC 90 ms
89,228 KB
testcase_11 AC 97 ms
93,704 KB
testcase_12 AC 77 ms
82,240 KB
testcase_13 AC 37 ms
52,324 KB
testcase_14 AC 37 ms
52,320 KB
testcase_15 AC 38 ms
52,644 KB
testcase_16 AC 37 ms
51,748 KB
testcase_17 AC 39 ms
52,592 KB
testcase_18 AC 118 ms
104,808 KB
testcase_19 AC 111 ms
101,192 KB
testcase_20 AC 116 ms
104,652 KB
testcase_21 AC 118 ms
104,988 KB
testcase_22 AC 111 ms
102,056 KB
testcase_23 AC 118 ms
105,652 KB
testcase_24 AC 117 ms
105,148 KB
testcase_25 AC 117 ms
105,208 KB
testcase_26 AC 117 ms
105,996 KB
testcase_27 AC 118 ms
105,424 KB
testcase_28 AC 38 ms
52,192 KB
testcase_29 AC 39 ms
52,024 KB
testcase_30 AC 38 ms
53,116 KB
testcase_31 AC 37 ms
53,252 KB
testcase_32 AC 37 ms
52,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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