結果

問題 No.1416 ショッピングモール
ユーザー tamatotamato
提出日時 2021-03-05 21:24:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 1,000 ms
コード長 363 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 94,240 KB
最終ジャッジ日時 2024-10-07 00:19:16
合計ジャッジ時間 2,499 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
77,744 KB
testcase_01 AC 54 ms
79,572 KB
testcase_02 AC 54 ms
77,976 KB
testcase_03 AC 52 ms
77,572 KB
testcase_04 AC 50 ms
77,384 KB
testcase_05 AC 52 ms
77,580 KB
testcase_06 AC 51 ms
77,992 KB
testcase_07 AC 51 ms
77,836 KB
testcase_08 AC 52 ms
79,472 KB
testcase_09 AC 51 ms
77,096 KB
testcase_10 AC 51 ms
77,612 KB
testcase_11 AC 56 ms
84,540 KB
testcase_12 AC 52 ms
77,568 KB
testcase_13 AC 58 ms
84,444 KB
testcase_14 AC 56 ms
84,824 KB
testcase_15 AC 57 ms
84,588 KB
testcase_16 AC 56 ms
84,044 KB
testcase_17 AC 56 ms
84,872 KB
testcase_18 AC 58 ms
85,476 KB
testcase_19 AC 58 ms
85,668 KB
testcase_20 AC 57 ms
85,572 KB
testcase_21 AC 68 ms
93,316 KB
testcase_22 AC 71 ms
94,172 KB
testcase_23 AC 64 ms
94,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    A = list(map(int, input().split()))

    A.sort(reverse=True)
    F = []
    for i in range(20):
        F.extend([i] * (1 << i))
    ans = 0
    for i in range(N):
        ans += A[i] * F[i]
    print(ans)


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