結果

問題 No.1564 Sum of Products of Pairs
ユーザー hiragnhiragn
提出日時 2022-11-25 17:52:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,556 KB
最終ジャッジ日時 2024-10-02 00:54:14
合計ジャッジ時間 4,371 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,496 KB
testcase_01 AC 24 ms
10,496 KB
testcase_02 AC 24 ms
10,496 KB
testcase_03 AC 82 ms
19,788 KB
testcase_04 AC 29 ms
11,648 KB
testcase_05 AC 93 ms
22,908 KB
testcase_06 AC 75 ms
18,928 KB
testcase_07 AC 54 ms
16,004 KB
testcase_08 AC 40 ms
13,312 KB
testcase_09 AC 56 ms
16,524 KB
testcase_10 AC 97 ms
23,424 KB
testcase_11 AC 107 ms
24,912 KB
testcase_12 AC 77 ms
20,084 KB
testcase_13 AC 25 ms
10,496 KB
testcase_14 AC 25 ms
10,368 KB
testcase_15 AC 24 ms
10,496 KB
testcase_16 AC 23 ms
10,368 KB
testcase_17 AC 24 ms
10,624 KB
testcase_18 AC 140 ms
29,684 KB
testcase_19 AC 132 ms
28,916 KB
testcase_20 AC 141 ms
29,964 KB
testcase_21 AC 142 ms
30,268 KB
testcase_22 AC 132 ms
28,840 KB
testcase_23 AC 142 ms
30,548 KB
testcase_24 AC 141 ms
30,424 KB
testcase_25 AC 141 ms
30,556 KB
testcase_26 AC 143 ms
30,420 KB
testcase_27 AC 145 ms
30,416 KB
testcase_28 AC 25 ms
10,496 KB
testcase_29 AC 25 ms
10,368 KB
testcase_30 AC 25 ms
10,496 KB
testcase_31 AC 24 ms
10,496 KB
testcase_32 AC 24 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    a = sorted(list(map(int, input().split())))

    ans = sum([a[i] * a[i + 1] for i in range(0, 2 * n, 2)])
    print(ans)


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