結果

問題 No.1564 Sum of Products of Pairs
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-06-26 14:49:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 105,596 KB
最終ジャッジ日時 2024-06-25 10:37:09
合計ジャッジ時間 4,027 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,940 KB
testcase_01 AC 39 ms
53,496 KB
testcase_02 AC 39 ms
52,860 KB
testcase_03 AC 80 ms
80,980 KB
testcase_04 AC 48 ms
61,764 KB
testcase_05 AC 91 ms
87,560 KB
testcase_06 AC 77 ms
78,944 KB
testcase_07 AC 63 ms
70,964 KB
testcase_08 AC 52 ms
65,084 KB
testcase_09 AC 66 ms
72,728 KB
testcase_10 AC 91 ms
87,956 KB
testcase_11 AC 96 ms
91,584 KB
testcase_12 AC 78 ms
80,788 KB
testcase_13 AC 38 ms
53,016 KB
testcase_14 AC 37 ms
53,112 KB
testcase_15 AC 39 ms
52,948 KB
testcase_16 AC 38 ms
52,620 KB
testcase_17 AC 39 ms
52,348 KB
testcase_18 AC 119 ms
104,444 KB
testcase_19 AC 115 ms
99,128 KB
testcase_20 AC 117 ms
104,440 KB
testcase_21 AC 119 ms
105,004 KB
testcase_22 AC 110 ms
99,304 KB
testcase_23 AC 118 ms
105,596 KB
testcase_24 AC 118 ms
105,412 KB
testcase_25 AC 118 ms
104,656 KB
testcase_26 AC 118 ms
104,464 KB
testcase_27 AC 119 ms
103,948 KB
testcase_28 AC 38 ms
52,064 KB
testcase_29 AC 38 ms
52,296 KB
testcase_30 AC 37 ms
53,036 KB
testcase_31 AC 37 ms
53,048 KB
testcase_32 AC 38 ms
52,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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