結果

問題 No.1564 Sum of Products of Pairs
ユーザー qibqib
提出日時 2022-12-28 02:31:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 105,728 KB
最終ジャッジ日時 2024-05-02 04:48:39
合計ジャッジ時間 4,688 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 79 ms
81,152 KB
testcase_04 AC 48 ms
60,800 KB
testcase_05 AC 91 ms
87,680 KB
testcase_06 AC 77 ms
78,976 KB
testcase_07 AC 64 ms
71,424 KB
testcase_08 AC 59 ms
65,280 KB
testcase_09 AC 68 ms
73,216 KB
testcase_10 AC 97 ms
88,064 KB
testcase_11 AC 98 ms
92,288 KB
testcase_12 AC 81 ms
81,408 KB
testcase_13 AC 43 ms
51,456 KB
testcase_14 AC 41 ms
51,584 KB
testcase_15 AC 43 ms
51,896 KB
testcase_16 AC 43 ms
52,096 KB
testcase_17 AC 39 ms
51,456 KB
testcase_18 AC 119 ms
104,704 KB
testcase_19 AC 117 ms
100,864 KB
testcase_20 AC 124 ms
104,824 KB
testcase_21 AC 127 ms
105,088 KB
testcase_22 AC 121 ms
100,352 KB
testcase_23 AC 129 ms
105,216 KB
testcase_24 AC 126 ms
105,080 KB
testcase_25 AC 124 ms
105,372 KB
testcase_26 AC 122 ms
105,728 KB
testcase_27 AC 123 ms
105,068 KB
testcase_28 AC 40 ms
51,840 KB
testcase_29 AC 40 ms
51,840 KB
testcase_30 AC 42 ms
52,096 KB
testcase_31 AC 41 ms
51,712 KB
testcase_32 AC 40 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

a.sort()
ans = sum(a[2 * i] * a[2 * i + 1] for i in range(n))
print(ans)
0