結果

問題 No.268 ラッピング(Easy)
ユーザー fal_rndfal_rnd
提出日時 2016-10-29 01:01:57
言語 Java
(openjdk 23)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 381 bytes
コンパイル時間 1,856 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 41,560 KB
最終ジャッジ日時 2024-11-24 07:01:48
合計ジャッジ時間 4,006 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,348 KB
testcase_01 AC 116 ms
41,560 KB
testcase_02 AC 115 ms
40,184 KB
testcase_03 AC 115 ms
41,480 KB
testcase_04 AC 118 ms
41,196 KB
testcase_05 AC 109 ms
41,272 KB
testcase_06 AC 116 ms
41,292 KB
testcase_07 AC 116 ms
41,372 KB
testcase_08 AC 106 ms
41,384 KB
testcase_09 AC 110 ms
41,316 KB
testcase_10 AC 99 ms
41,316 KB
testcase_11 AC 119 ms
41,208 KB
testcase_12 AC 118 ms
41,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int	x = s.nextInt(),
			y = s.nextInt(),
			z = s.nextInt();
		int l[] = {x+y,y+z,z+x};
		Arrays.sort(l);
		int rgb[]	= {s.nextInt(),s.nextInt(),s.nextInt()};
		Arrays.sort(rgb);
		System.out.println(
				 l[0]*rgb[2]*2
				+l[1]*rgb[1]*2
				+l[2]*rgb[0]*2);
	}
}
0