結果

問題 No.1416 ショッピングモール
ユーザー tentententen
提出日時 2021-03-06 14:15:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 471 ms / 1,000 ms
コード長 587 bytes
コンパイル時間 4,326 ms
コンパイル使用メモリ 74,744 KB
実行使用メモリ 59,492 KB
最終ジャッジ日時 2024-10-08 13:00:12
合計ジャッジ時間 9,621 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,932 KB
testcase_01 AC 131 ms
54,100 KB
testcase_02 AC 137 ms
54,308 KB
testcase_03 AC 143 ms
54,220 KB
testcase_04 AC 137 ms
53,780 KB
testcase_05 AC 186 ms
54,364 KB
testcase_06 AC 145 ms
54,048 KB
testcase_07 AC 181 ms
54,312 KB
testcase_08 AC 195 ms
54,520 KB
testcase_09 AC 137 ms
54,028 KB
testcase_10 AC 135 ms
54,160 KB
testcase_11 AC 213 ms
56,748 KB
testcase_12 AC 182 ms
54,640 KB
testcase_13 AC 221 ms
56,720 KB
testcase_14 AC 221 ms
57,660 KB
testcase_15 AC 248 ms
57,864 KB
testcase_16 AC 220 ms
57,236 KB
testcase_17 AC 252 ms
58,232 KB
testcase_18 AC 252 ms
58,264 KB
testcase_19 AC 254 ms
58,128 KB
testcase_20 AC 255 ms
58,144 KB
testcase_21 AC 449 ms
59,492 KB
testcase_22 AC 471 ms
59,456 KB
testcase_23 AC 423 ms
58,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] counts = new int[n];
        for (int i = 0; i < n; i++) {
            counts[i] = sc.nextInt();
        }
        Arrays.sort(counts);
        int idx = n - 1;
        long ans = 0;
        for (int i = 0; idx >= 0; i++) {
            for (int j = 0; j < (1 << i) && idx >= 0; j++) {
                ans += counts[idx] * i;
                idx--;
            }
        }
        System.out.println(ans);
    }
}
0