結果

問題 No.1564 Sum of Products of Pairs
ユーザー irumo8202irumo8202
提出日時 2022-02-17 22:41:08
言語 TypeScript
(5.7.2)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 8,383 ms
コンパイル使用メモリ 228,812 KB
実行使用メモリ 65,612 KB
最終ジャッジ日時 2024-12-31 16:46:28
合計ジャッジ時間 16,057 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
39,424 KB
testcase_01 AC 63 ms
39,424 KB
testcase_02 AC 63 ms
39,552 KB
testcase_03 AC 204 ms
52,296 KB
testcase_04 AC 77 ms
44,288 KB
testcase_05 AC 257 ms
59,428 KB
testcase_06 AC 199 ms
52,108 KB
testcase_07 AC 146 ms
48,872 KB
testcase_08 AC 108 ms
47,104 KB
testcase_09 AC 152 ms
49,248 KB
testcase_10 AC 268 ms
56,300 KB
testcase_11 AC 285 ms
57,912 KB
testcase_12 AC 209 ms
54,220 KB
testcase_13 AC 62 ms
39,296 KB
testcase_14 AC 63 ms
39,296 KB
testcase_15 AC 62 ms
39,552 KB
testcase_16 AC 63 ms
39,424 KB
testcase_17 AC 62 ms
39,296 KB
testcase_18 AC 357 ms
63,308 KB
testcase_19 AC 346 ms
65,224 KB
testcase_20 AC 360 ms
63,216 KB
testcase_21 AC 367 ms
65,612 KB
testcase_22 AC 340 ms
63,004 KB
testcase_23 AC 368 ms
63,500 KB
testcase_24 AC 365 ms
63,892 KB
testcase_25 AC 367 ms
63,632 KB
testcase_26 AC 367 ms
63,796 KB
testcase_27 AC 368 ms
63,892 KB
testcase_28 AC 63 ms
39,296 KB
testcase_29 AC 63 ms
39,552 KB
testcase_30 AC 63 ms
39,552 KB
testcase_31 AC 64 ms
39,296 KB
testcase_32 AC 63 ms
39,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import * as fs from "fs"

const main = (args: string): void => {
    const input = args.trim().split("\n");
    const N = parseInt(input.shift())
    const A = input.shift().split(" ").map(x => Number(x))
    A.sort((x, y) => x > y ? -1 : 1)
    let ans = BigInt(0)

    for (let i = 0; i < 2 * N; i += 2) {
        ans += BigInt(A[i] * A[i + 1])
    }
    console.log(String(ans))
}

main(fs.readFileSync('/dev/stdin', 'utf8'));

function apply<T, R>(value: T, func: (arg: T) => R): R {
    return func(value)
}
0