結果

問題 No.1564 Sum of Products of Pairs
ユーザー 👑 rin204rin204
提出日時 2021-08-05 13:21:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 163 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 104,064 KB
最終ジャッジ日時 2024-09-16 15:19:48
合計ジャッジ時間 3,815 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 79 ms
80,128 KB
testcase_04 AC 45 ms
60,416 KB
testcase_05 AC 87 ms
86,400 KB
testcase_06 AC 73 ms
77,952 KB
testcase_07 AC 61 ms
71,040 KB
testcase_08 AC 51 ms
64,512 KB
testcase_09 AC 63 ms
72,064 KB
testcase_10 AC 88 ms
86,656 KB
testcase_11 AC 95 ms
90,496 KB
testcase_12 AC 78 ms
80,384 KB
testcase_13 AC 38 ms
51,712 KB
testcase_14 AC 38 ms
52,096 KB
testcase_15 AC 38 ms
51,712 KB
testcase_16 AC 38 ms
51,712 KB
testcase_17 AC 40 ms
52,224 KB
testcase_18 AC 115 ms
103,040 KB
testcase_19 AC 109 ms
99,456 KB
testcase_20 AC 113 ms
102,912 KB
testcase_21 AC 115 ms
103,168 KB
testcase_22 AC 108 ms
98,688 KB
testcase_23 AC 116 ms
104,064 KB
testcase_24 AC 116 ms
103,552 KB
testcase_25 AC 116 ms
103,552 KB
testcase_26 AC 116 ms
103,296 KB
testcase_27 AC 116 ms
103,296 KB
testcase_28 AC 38 ms
51,456 KB
testcase_29 AC 38 ms
51,712 KB
testcase_30 AC 38 ms
52,224 KB
testcase_31 AC 38 ms
51,712 KB
testcase_32 AC 38 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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