結果

問題 No.1416 ショッピングモール
ユーザー vwxyzvwxyz
提出日時 2022-09-06 18:02:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 95 ms / 1,000 ms
コード長 267 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,808 KB
最終ジャッジ日時 2024-11-21 18:55:11
合計ジャッジ時間 2,771 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
23,660 KB
testcase_01 AC 57 ms
23,680 KB
testcase_02 AC 58 ms
23,792 KB
testcase_03 AC 57 ms
23,776 KB
testcase_04 AC 57 ms
23,768 KB
testcase_05 AC 57 ms
23,920 KB
testcase_06 AC 57 ms
23,668 KB
testcase_07 AC 57 ms
23,832 KB
testcase_08 AC 58 ms
23,804 KB
testcase_09 AC 57 ms
23,668 KB
testcase_10 AC 61 ms
23,788 KB
testcase_11 AC 61 ms
24,000 KB
testcase_12 AC 58 ms
23,688 KB
testcase_13 AC 61 ms
24,116 KB
testcase_14 AC 60 ms
24,280 KB
testcase_15 AC 63 ms
24,324 KB
testcase_16 AC 61 ms
24,080 KB
testcase_17 AC 64 ms
24,424 KB
testcase_18 AC 63 ms
24,476 KB
testcase_19 AC 63 ms
24,320 KB
testcase_20 AC 62 ms
24,408 KB
testcase_21 AC 94 ms
27,760 KB
testcase_22 AC 95 ms
27,808 KB
testcase_23 AC 85 ms
27,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from typing import Counter
readline=sys.stdin.readline
write=sys.stdout.write

N=int(readline())
A=sorted(list(map(int,readline().split())),reverse=True)
pow2=[]
for k in range(20):
    pow2+=[k]*(1<<k)
ans=0
for a,p in zip(A,pow2):
    ans+=a*p
print(ans)
0