結果

問題 No.1564 Sum of Products of Pairs
ユーザー googol_S0googol_S0
提出日時 2021-06-26 13:03:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 106,108 KB
最終ジャッジ日時 2024-06-25 10:08:04
合計ジャッジ時間 3,679 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,364 KB
testcase_01 AC 36 ms
53,220 KB
testcase_02 AC 35 ms
52,868 KB
testcase_03 AC 72 ms
81,068 KB
testcase_04 AC 43 ms
61,340 KB
testcase_05 AC 83 ms
87,828 KB
testcase_06 AC 71 ms
80,000 KB
testcase_07 AC 59 ms
71,920 KB
testcase_08 AC 48 ms
65,060 KB
testcase_09 AC 59 ms
74,188 KB
testcase_10 AC 85 ms
88,716 KB
testcase_11 AC 91 ms
92,560 KB
testcase_12 AC 73 ms
81,928 KB
testcase_13 AC 36 ms
52,616 KB
testcase_14 AC 36 ms
52,228 KB
testcase_15 AC 35 ms
52,424 KB
testcase_16 AC 35 ms
52,684 KB
testcase_17 AC 35 ms
51,872 KB
testcase_18 AC 112 ms
105,092 KB
testcase_19 AC 106 ms
100,784 KB
testcase_20 AC 110 ms
104,700 KB
testcase_21 AC 113 ms
105,992 KB
testcase_22 AC 106 ms
101,324 KB
testcase_23 AC 112 ms
105,420 KB
testcase_24 AC 113 ms
104,960 KB
testcase_25 AC 113 ms
105,856 KB
testcase_26 AC 113 ms
106,108 KB
testcase_27 AC 111 ms
105,828 KB
testcase_28 AC 36 ms
52,564 KB
testcase_29 AC 35 ms
51,828 KB
testcase_30 AC 35 ms
52,832 KB
testcase_31 AC 36 ms
52,944 KB
testcase_32 AC 38 ms
51,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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