結果

問題 No.1416 ショッピングモール
ユーザー harurunharurun
提出日時 2020-12-17 13:07:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 375 ms / 1,000 ms
コード長 588 bytes
コンパイル時間 2,932 ms
コンパイル使用メモリ 76,808 KB
実行使用メモリ 48,752 KB
最終ジャッジ日時 2024-09-20 06:59:07
合計ジャッジ時間 7,155 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,956 KB
testcase_01 AC 110 ms
41,040 KB
testcase_02 AC 112 ms
40,960 KB
testcase_03 AC 123 ms
41,492 KB
testcase_04 AC 109 ms
41,228 KB
testcase_05 AC 134 ms
41,556 KB
testcase_06 AC 117 ms
41,132 KB
testcase_07 AC 146 ms
41,516 KB
testcase_08 AC 147 ms
41,548 KB
testcase_09 AC 97 ms
39,872 KB
testcase_10 AC 96 ms
39,820 KB
testcase_11 AC 164 ms
43,056 KB
testcase_12 AC 134 ms
41,480 KB
testcase_13 AC 174 ms
42,672 KB
testcase_14 AC 178 ms
43,616 KB
testcase_15 AC 199 ms
45,344 KB
testcase_16 AC 168 ms
43,480 KB
testcase_17 AC 203 ms
45,484 KB
testcase_18 AC 202 ms
45,776 KB
testcase_19 AC 209 ms
46,116 KB
testcase_20 AC 195 ms
45,240 KB
testcase_21 AC 375 ms
48,640 KB
testcase_22 AC 373 ms
48,752 KB
testcase_23 AC 288 ms
47,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Collections;
import java.util.Scanner;
class Main{
  public static void main(String[] args){
    Scanner scan=new Scanner(System.in);
    int n,ans=0,cnt=0,N,a=1;
    n=Integer.parseInt(scan.next());
    N=n;
    Integer[] A=new Integer[n];
    for(int i=0;i<n;i++)A[i]=Integer.parseInt(scan.next());
    Arrays.sort(A,Collections.reverseOrder());
    for(int i=0;i<17;i++){
      a=Math.min(a,N);
      for(int j=0;j<a;j++){
        ans+=i*A[cnt++];
      }
      N-=a;
      a*=2;
      if(N<=0)break;
    }
    System.out.println(ans);
  }
}

0