結果

問題 No.1416 ショッピングモール
ユーザー ks2mks2m
提出日時 2021-03-05 22:20:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 475 ms / 1,000 ms
コード長 524 bytes
コンパイル時間 2,250 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 59,316 KB
最終ジャッジ日時 2024-10-07 02:47:52
合計ジャッジ時間 8,724 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,052 KB
testcase_01 AC 130 ms
54,320 KB
testcase_02 AC 131 ms
54,208 KB
testcase_03 AC 134 ms
53,956 KB
testcase_04 AC 117 ms
52,904 KB
testcase_05 AC 167 ms
54,348 KB
testcase_06 AC 137 ms
53,888 KB
testcase_07 AC 174 ms
54,424 KB
testcase_08 AC 182 ms
54,480 KB
testcase_09 AC 133 ms
54,228 KB
testcase_10 AC 131 ms
54,204 KB
testcase_11 AC 206 ms
56,748 KB
testcase_12 AC 173 ms
54,368 KB
testcase_13 AC 211 ms
56,736 KB
testcase_14 AC 228 ms
57,760 KB
testcase_15 AC 239 ms
58,004 KB
testcase_16 AC 218 ms
57,528 KB
testcase_17 AC 253 ms
58,444 KB
testcase_18 AC 252 ms
58,148 KB
testcase_19 AC 258 ms
58,492 KB
testcase_20 AC 244 ms
58,216 KB
testcase_21 AC 472 ms
59,180 KB
testcase_22 AC 475 ms
59,316 KB
testcase_23 AC 416 ms
58,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		Arrays.sort(a);
		int f = 0;
		int m = 1;
		int c = 0;
		int ans = 0;
		for (int i = n - 1; i >= 0; i--) {
			if (c == m) {
				f++;
				m = 1 << f;
				c = 0;
			}
			ans += a[i] * f;
			c++;
		}
		System.out.println(ans);
	}
}
0