結果

問題 No.1564 Sum of Products of Pairs
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-11 18:17:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 82,788 KB
実行使用メモリ 105,352 KB
最終ジャッジ日時 2024-11-14 11:42:16
合計ジャッジ時間 4,594 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 36 ms
53,244 KB
testcase_02 AC 36 ms
52,272 KB
testcase_03 AC 77 ms
80,744 KB
testcase_04 AC 45 ms
61,332 KB
testcase_05 AC 85 ms
86,420 KB
testcase_06 AC 72 ms
79,080 KB
testcase_07 AC 59 ms
71,872 KB
testcase_08 AC 48 ms
65,716 KB
testcase_09 AC 61 ms
72,852 KB
testcase_10 AC 86 ms
87,756 KB
testcase_11 AC 92 ms
91,524 KB
testcase_12 AC 75 ms
81,104 KB
testcase_13 AC 37 ms
53,188 KB
testcase_14 AC 38 ms
52,572 KB
testcase_15 AC 37 ms
52,996 KB
testcase_16 AC 37 ms
52,828 KB
testcase_17 AC 37 ms
52,604 KB
testcase_18 AC 112 ms
102,792 KB
testcase_19 AC 106 ms
99,968 KB
testcase_20 AC 110 ms
103,816 KB
testcase_21 AC 110 ms
103,420 KB
testcase_22 AC 105 ms
99,716 KB
testcase_23 AC 112 ms
103,876 KB
testcase_24 AC 112 ms
104,036 KB
testcase_25 AC 112 ms
104,356 KB
testcase_26 AC 113 ms
105,352 KB
testcase_27 AC 115 ms
105,144 KB
testcase_28 AC 37 ms
53,036 KB
testcase_29 AC 37 ms
52,736 KB
testcase_30 AC 37 ms
52,408 KB
testcase_31 AC 37 ms
52,056 KB
testcase_32 AC 36 ms
52,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ns=list(map(int,input().split()))
ns.sort(reverse=True)
cnt=0

for i in range(1,n*2,2):
    cnt+=ns[i]*ns[i-1]

print(cnt)
    
    
0