結果

問題 No.268 ラッピング(Easy)
ユーザー kenji_shioya
提出日時 2016-06-14 21:22:35
言語 Java
(openjdk 23)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 669 bytes
コンパイル時間 3,963 ms
コンパイル使用メモリ 81,728 KB
実行使用メモリ 41,872 KB
最終ジャッジ日時 2024-10-09 13:43:24
合計ジャッジ時間 6,650 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise83{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);
    Integer[] box = new Integer[3];
    Integer[] ribbon = new Integer[3];
    int a = sc.nextInt();
    int b = sc.nextInt();
    int c = sc.nextInt();
    for(int i = 0; i < ribbon.length; i++){
      ribbon[i] = sc.nextInt();
    }
    box[0] = a + b;
    box[1] = a + c;
    box[2] = b + c;

    Arrays.sort(box, Comparator.naturalOrder());
    Arrays.sort(ribbon, Comparator.reverseOrder());
    
    int sum = 0;
    for(int i = 0; i < box.length; i++){
      sum += box[i] * 2 * ribbon[i];
    }

    System.out.println(sum);
  }
}
0