結果

問題 No.268 ラッピング(Easy)
ユーザー kou6839kou6839
提出日時 2015-08-22 20:12:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 5,000 ms
コード長 595 bytes
コンパイル時間 1,815 ms
コンパイル使用メモリ 74,452 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-07-18 12:49:08
合計ジャッジ時間 3,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
53,756 KB
testcase_01 AC 107 ms
53,812 KB
testcase_02 AC 115 ms
53,628 KB
testcase_03 AC 113 ms
54,104 KB
testcase_04 AC 97 ms
52,528 KB
testcase_05 AC 112 ms
53,708 KB
testcase_06 AC 106 ms
53,816 KB
testcase_07 AC 98 ms
52,624 KB
testcase_08 AC 107 ms
53,780 KB
testcase_09 AC 107 ms
53,784 KB
testcase_10 AC 113 ms
53,852 KB
testcase_11 AC 114 ms
53,440 KB
testcase_12 AC 117 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main {
    public static void main(String[] args){
        // TODO 自動生成されたメソッド・スタブ
    	Scanner sc = new Scanner(System.in);
  	int[] hako = new int[3];
  	int[] kai = new int[3];
  	for(int i=0;i<3;i++){
  		hako[i]=sc.nextInt();
  	}
  	for(int i=0;i<3;i++) kai[i]=sc.nextInt();
  	int[] need = new int[3];
  	for(int i=0;i<3;i++){
  		need[i]=2*(hako[i]+hako[(i+1)%3]);
  	}
  	Arrays.sort(need);
  	Arrays.sort(kai);
  	int ans=0;
  	for(int i=0;i<3;i++){
  		ans+=need[i]*kai[2-i];
  	}
    System.out.println(ans);
    }
}
0