結果

問題 No.1564 Sum of Products of Pairs
ユーザー ygd.ygd.
提出日時 2021-06-28 19:58:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 104,484 KB
最終ジャッジ日時 2024-06-25 14:40:51
合計ジャッジ時間 4,505 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,196 KB
testcase_01 AC 39 ms
51,872 KB
testcase_02 AC 38 ms
53,496 KB
testcase_03 AC 75 ms
80,848 KB
testcase_04 AC 45 ms
61,144 KB
testcase_05 AC 87 ms
86,544 KB
testcase_06 AC 73 ms
78,868 KB
testcase_07 AC 61 ms
71,040 KB
testcase_08 AC 50 ms
65,272 KB
testcase_09 AC 63 ms
72,556 KB
testcase_10 AC 93 ms
87,008 KB
testcase_11 AC 94 ms
91,120 KB
testcase_12 AC 77 ms
80,284 KB
testcase_13 AC 38 ms
52,864 KB
testcase_14 AC 38 ms
51,956 KB
testcase_15 AC 39 ms
52,076 KB
testcase_16 AC 39 ms
52,684 KB
testcase_17 AC 38 ms
53,628 KB
testcase_18 AC 114 ms
103,212 KB
testcase_19 AC 105 ms
100,176 KB
testcase_20 AC 111 ms
103,072 KB
testcase_21 AC 115 ms
103,356 KB
testcase_22 AC 109 ms
99,504 KB
testcase_23 AC 117 ms
104,484 KB
testcase_24 AC 116 ms
102,976 KB
testcase_25 AC 116 ms
103,792 KB
testcase_26 AC 115 ms
102,924 KB
testcase_27 AC 115 ms
103,048 KB
testcase_28 AC 38 ms
52,320 KB
testcase_29 AC 38 ms
52,308 KB
testcase_30 AC 36 ms
52,356 KB
testcase_31 AC 39 ms
53,088 KB
testcase_32 AC 38 ms
53,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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