結果
問題 | No.1416 ショッピングモール |
ユーザー | 👑 Kazun |
提出日時 | 2021-03-05 21:24:28 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 57 ms / 1,000 ms |
コード長 | 144 bytes |
コンパイル時間 | 299 ms |
コンパイル使用メモリ | 81,880 KB |
実行使用メモリ | 68,864 KB |
最終ジャッジ日時 | 2024-10-07 00:18:21 |
合計ジャッジ時間 | 2,136 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
N=int(input()) A=list(map(int,input().split())) A.sort(reverse=True) X=0 for i in range(1,N+1): b=i.bit_length()-1 X+=b*A[i-1] print(X)