結果

問題 No.268 ラッピング(Easy)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-14 21:22:35
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,288 KB
testcase_01 AC 140 ms
41,464 KB
testcase_02 AC 138 ms
41,868 KB
testcase_03 AC 141 ms
41,692 KB
testcase_04 AC 136 ms
41,484 KB
testcase_05 AC 138 ms
41,756 KB
testcase_06 AC 139 ms
41,740 KB
testcase_07 AC 139 ms
41,392 KB
testcase_08 AC 135 ms
41,520 KB
testcase_09 AC 137 ms
41,872 KB
testcase_10 AC 139 ms
41,756 KB
testcase_11 AC 140 ms
41,500 KB
testcase_12 AC 140 ms
41,060 KB
権限があれば一括ダウンロードができます

ソースコード

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