結果

問題 No.268 ラッピング(Easy)
ユーザー fal_rndfal_rnd
提出日時 2016-10-29 01:01:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 381 bytes
コンパイル時間 1,716 ms
コンパイル使用メモリ 74,064 KB
実行使用メモリ 41,664 KB
最終ジャッジ日時 2024-05-03 08:34:01
合計ジャッジ時間 3,872 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,440 KB
testcase_01 AC 99 ms
41,108 KB
testcase_02 AC 106 ms
41,436 KB
testcase_03 AC 109 ms
40,352 KB
testcase_04 AC 107 ms
41,304 KB
testcase_05 AC 118 ms
41,124 KB
testcase_06 AC 119 ms
41,168 KB
testcase_07 AC 116 ms
40,000 KB
testcase_08 AC 117 ms
40,376 KB
testcase_09 AC 110 ms
40,204 KB
testcase_10 AC 101 ms
41,432 KB
testcase_11 AC 108 ms
41,664 KB
testcase_12 AC 112 ms
41,136 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