結果

問題 No.268 ラッピング(Easy)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-18 21:38:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 560 bytes
コンパイル時間 2,740 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-05-04 17:03:06
合計ジャッジ時間 4,011 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
41,500 KB
testcase_01 AC 109 ms
41,424 KB
testcase_02 AC 103 ms
41,404 KB
testcase_03 AC 116 ms
41,348 KB
testcase_04 AC 111 ms
41,656 KB
testcase_05 AC 106 ms
41,536 KB
testcase_06 AC 105 ms
41,660 KB
testcase_07 AC 110 ms
41,436 KB
testcase_08 AC 117 ms
41,504 KB
testcase_09 AC 101 ms
40,440 KB
testcase_10 AC 108 ms
41,300 KB
testcase_11 AC 105 ms
40,128 KB
testcase_12 AC 112 ms
40,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int L1 = sc.nextInt();
        int L2 = sc.nextInt();
        int L3 = sc.nextInt();
        int [] L = {L1+L2,L2+L3,L3+L1};
        int [] RBY = new int [3];
        for(int i=0; i<3; i++){
            RBY[i] = sc.nextInt();
        }
        Arrays.sort(L);
        Arrays.sort(RBY);
        int min=0;
        for(int i=0; i<3; i++){
            min+=RBY[i]*L[2-i];
        }
        System.out.println(2*min);
    }
}
0