結果

問題 No.268 ラッピング(Easy)
ユーザー 37zigen37zigen
提出日時 2016-05-03 23:53:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 544 bytes
コンパイル時間 2,093 ms
コンパイル使用メモリ 74,792 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-10-05 06:08:45
合計ジャッジ時間 4,578 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,916 KB
testcase_01 AC 133 ms
41,148 KB
testcase_02 AC 132 ms
41,248 KB
testcase_03 AC 132 ms
41,100 KB
testcase_04 AC 130 ms
41,396 KB
testcase_05 AC 130 ms
41,396 KB
testcase_06 AC 119 ms
40,176 KB
testcase_07 AC 133 ms
41,124 KB
testcase_08 AC 133 ms
41,312 KB
testcase_09 AC 119 ms
40,372 KB
testcase_10 AC 134 ms
41,572 KB
testcase_11 AC 132 ms
41,312 KB
testcase_12 AC 131 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Arrays;
import java.util.Scanner;
public class Main{
	public static void main(String[] args)throws Exception{
		new Main().solve();
	}
	void solve(){
		Scanner sc=new Scanner(System.in);
		int[] l=new int[3];
		for(int i=0;i<3;i++)l[i]=sc.nextInt();
		int[] d=new int[3];
		for(int i=0;i<3;i++)d[i]=sc.nextInt();
		Arrays.sort(d);
		
		int s_sum=l[0]+l[1]+l[2];
		for(int i=0;i<3;i++)l[i]=2*(s_sum-l[i]);
		Arrays.sort(l);
		int ans=0;
		for(int i=0;i<3;i++)ans+=l[i]*d[2-i];
		System.out.println(ans);
	}
}
0