結果

問題 No.1416 ショッピングモール
ユーザー nohakai3nohakai3
提出日時 2022-07-06 16:00:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 236 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 10,660 KB
実行使用メモリ 14,096 KB
最終ジャッジ日時 2023-08-23 14:13:34
合計ジャッジ時間 2,148 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,812 KB
testcase_01 AC 17 ms
7,896 KB
testcase_02 AC 16 ms
7,776 KB
testcase_03 AC 16 ms
7,816 KB
testcase_04 AC 15 ms
7,896 KB
testcase_05 AC 16 ms
7,804 KB
testcase_06 AC 15 ms
7,960 KB
testcase_07 AC 15 ms
7,848 KB
testcase_08 AC 16 ms
7,892 KB
testcase_09 AC 15 ms
7,848 KB
testcase_10 AC 15 ms
7,908 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 18 ms
8,564 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
A=list(map(int,input().split()))
A.sort(reverse=True)
ans,cnt=0,0
k=n
for i in range(17):
    a=min(pow(2,i),n)
    for j in range(a):
        ans+=i*A[cnt]
        cnt+=1
    k-=a
    if k<=0:
        break



print(ans)
0