結果

問題 No.268 ラッピング(Easy)
コンテスト
ユーザー kenji_shioya
提出日時 2016-06-14 21:22:35
言語 Java
(openjdk 26.0.2.1 + ACL)
コンパイル:
javac -J-Duser.language=en -encoding UTF8 -cp /opt/aclib/ac_library.jar _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true -cp .:/opt/aclib/ac_library.jar _class_
結果
AC  
実行時間 61 ms / 5,000 ms
+ 64µs
コード長 669 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,679 ms
コンパイル使用メモリ 89,712 KB
実行使用メモリ 43,008 KB
最終ジャッジ日時 2026-09-12 15:39:10
合計ジャッジ時間 4,634 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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