結果

問題 No.1564 Sum of Products of Pairs
ユーザー miya145592miya145592
提出日時 2023-05-07 03:19:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 104,816 KB
最終ジャッジ日時 2024-05-03 07:53:04
合計ジャッジ時間 3,932 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,944 KB
testcase_01 AC 34 ms
52,340 KB
testcase_02 AC 32 ms
52,404 KB
testcase_03 AC 66 ms
81,280 KB
testcase_04 AC 40 ms
60,596 KB
testcase_05 AC 80 ms
88,004 KB
testcase_06 AC 67 ms
80,028 KB
testcase_07 AC 61 ms
71,688 KB
testcase_08 AC 47 ms
65,412 KB
testcase_09 AC 58 ms
72,616 KB
testcase_10 AC 81 ms
88,176 KB
testcase_11 AC 85 ms
91,360 KB
testcase_12 AC 70 ms
81,552 KB
testcase_13 AC 36 ms
53,576 KB
testcase_14 AC 34 ms
52,684 KB
testcase_15 AC 36 ms
52,272 KB
testcase_16 AC 33 ms
52,336 KB
testcase_17 AC 33 ms
52,280 KB
testcase_18 AC 101 ms
103,232 KB
testcase_19 AC 96 ms
99,504 KB
testcase_20 AC 103 ms
103,880 KB
testcase_21 AC 105 ms
104,168 KB
testcase_22 AC 95 ms
98,676 KB
testcase_23 AC 101 ms
104,632 KB
testcase_24 AC 101 ms
103,976 KB
testcase_25 AC 102 ms
104,596 KB
testcase_26 AC 107 ms
104,084 KB
testcase_27 AC 105 ms
104,816 KB
testcase_28 AC 34 ms
53,040 KB
testcase_29 AC 35 ms
53,004 KB
testcase_30 AC 34 ms
52,500 KB
testcase_31 AC 34 ms
52,884 KB
testcase_32 AC 35 ms
52,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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