結果

問題 No.1564 Sum of Products of Pairs
ユーザー ThetaTheta
提出日時 2022-12-19 19:29:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,680 KB
最終ジャッジ日時 2024-11-18 01:14:48
合計ジャッジ時間 4,229 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 23 ms
10,624 KB
testcase_03 AC 70 ms
19,920 KB
testcase_04 AC 28 ms
11,648 KB
testcase_05 AC 86 ms
23,160 KB
testcase_06 AC 70 ms
18,928 KB
testcase_07 AC 51 ms
16,132 KB
testcase_08 AC 37 ms
13,312 KB
testcase_09 AC 53 ms
16,652 KB
testcase_10 AC 90 ms
23,552 KB
testcase_11 AC 97 ms
24,784 KB
testcase_12 AC 72 ms
20,340 KB
testcase_13 AC 23 ms
10,496 KB
testcase_14 AC 24 ms
10,624 KB
testcase_15 AC 23 ms
10,624 KB
testcase_16 AC 23 ms
10,624 KB
testcase_17 AC 24 ms
10,496 KB
testcase_18 AC 128 ms
29,940 KB
testcase_19 AC 121 ms
29,044 KB
testcase_20 AC 128 ms
29,960 KB
testcase_21 AC 132 ms
30,516 KB
testcase_22 AC 126 ms
28,976 KB
testcase_23 AC 130 ms
30,680 KB
testcase_24 AC 132 ms
30,676 KB
testcase_25 AC 131 ms
30,552 KB
testcase_26 AC 131 ms
30,676 KB
testcase_27 AC 129 ms
30,548 KB
testcase_28 AC 24 ms
10,624 KB
testcase_29 AC 24 ms
10,496 KB
testcase_30 AC 23 ms
10,624 KB
testcase_31 AC 23 ms
10,752 KB
testcase_32 AC 23 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    A = list(map(int, input().split()))
    A.sort()
    print(sum(elm1*elm2 for elm1, elm2 in zip(A[::2], A[1::2])))


if __name__ == "__main__":
    main()
0