結果
問題 | No.1416 ショッピングモール |
ユーザー |
|
提出日時 | 2023-05-10 00:58:10 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 56 ms / 1,000 ms |
コード長 | 208 bytes |
コンパイル時間 | 235 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 68,736 KB |
最終ジャッジ日時 | 2024-11-26 09:03:28 |
合計ジャッジ時間 | 2,026 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
N = int(input())A = list(map(int, input().split()))A.sort(reverse=True)k = 0i = 0cnt = 0ans = 0while i<N:cnt += 2**kwhile i<N and i<cnt:ans += A[i]*ki+=1k+=1print(ans)